function [x,U]=my_int(f,I,ua,h) % my_int - solves the initial value problem u'(x)=f(x), u(a)=ua % % Syntax: % [x,U]=my_int(f,I,ua,h) % Arguments: % f - string containing the name of a function file, % for example, f='funk' % I - 1x2 matrix, specifying an interval I=[a b] % ua - real number, the initial value % h - positive number, the stepsize % Returns: % x - a vector, the set of nodes x(i) % U - a vector, U(i) is the approximate solution at % the point x(i) % Description: % The program computes an approximate solution of the initial % value problem u'(x)=f(x), a