Помогите, пожалуйста. Я вот код написал. Пишу plot(x,t) а он выдает ошибку: error: 'x' undefined near line 13 column 6 error: evaluating argument list element number 1
function main [x,t]=eiler_m(0,1,100,1) endfunction function deriv=g(t,x) deriv=-2*t.*x; endfunction function [x,t]=eiler_m(a,b,n,x0) h=(b-a)/n; x(1)=x0; for i=1:n+1 t(i)=a+(i-1)*h; end for i=2:n+1 tp=t(i-1)+h/2; xp=x(i-1)+h/2*g(t(i-1),x(i-1)); x(i)=x(i-1)+h*g(tp,xp); end endfunction