How do I manipulate a function for Euler's method to create a function for an improved Euler's method?
1 回表示 (過去 30 日間)
古いコメントを表示
Here is the code I have for my Euler's method. It works pretty well. I'm unclear as to what modifications I would make to this so that I may create a function for the improved Euler's method. function [ t,y ] = euler( f,tspan,y0,N ) m=length(y0); t0=tspan(1); tf=tspan(2); h=(tf-t0)./N; t=linspace(t0,tf,N+1); y=zeros(m,N+1); y(:,1) = y0'; for n=1:N y(:,n+1) = y(:,n) + h*f(t(n),y(:,n)); end t=t';y=y'; end
0 件のコメント
回答 (1 件)
Dave Behera
2016 年 4 月 5 日
The following link describes the Euler method and the improved Euler method:
You will need to modify the line inside the for loop for the new function.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!