f=@(t,y) (1/t.^2)-(y./t)-(y.^2);
t0=1;
tN=2;
y0=1;
N=10;
[t, y, yprime]=euler(f,t0,tN,y0,N);
this is my script that I am trying to get it to read the euler.m file
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!