% driver for euler3.m function edrive3() n=10; dx=1/n; x=0:dx:1; y=euler3(n); plot(x,y,x,actual(x)); function t = actual(x) t = exp(x);