Solving a System of ODEs using Euler's method
71 次查看(过去 30 天)
显示 更早的评论
Hi,
I am having trouble finding a solution to a sytem of ODEs using Euler's method. I have tried several codes with several parameters, but I don't seem to get the right results. I have in addition to this text included the problem and my code as references. Any assitance would be greatly appreciated. Thanks
The code
0 个评论
回答(1 个)
Jan
2021-9-14
Your function to be integrated depends on t also. You call this x in the Euler method.
At is easier to use vector equations:
f = @(t,y) [-t*y(1) - y(2); -y(1) + t * y(2)];
...
y(:, i + 1) = y(:, i) + h * f(t(i), y(:, i));
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Ordinary Differential Equations 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!