Matlab实现——Euler's Method

欢迎前往个人博客 驽马点滴 和视频空间 哔哩哔哩-《挨踢日志》

euler.m

%Program9.1 (Euler's Method)

function E=euler(f,a,b,ya,M)

%Input - f is the function entered as a string ??f??

%         - a and b are the left and right endpoints

%         - ya is the initial condition y(a)

%         - M is the number of steps

%Output - E=[T?? Y??] where T is the vector of abscissas 

%              and Y is the vector of ordinates

h=(b-a)/M;

T=zeros(1,M+1);

Y=zeros(1,M+1);

T=a:h:b;

Y(1)=ya;

for j=1:M

Y(j+1)=Y(j)+h*feval(f,T(j),Y(j));

end

E=[T' Y'];

 

fun.m

 

function f=fun(t,y)

f=3*y+3*t;

 

 

 

 

untitled.m

 

a=0;
b=2;
ya=1;
M=20;
f='fun';
E=euler(f,a,b,ya,M)

欢迎前往个人博客 驽马点滴 和视频空间 哔哩哔哩-《挨踢日志》

 

 

 

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值