Runge Kutta for system of differential equations
2 次查看(过去 30 天)
显示 更早的评论
Hello,
I have to solve the following system with method of Runge Kutta:
y1' = y2
y2'=f(x,y1,y2) with y1(0)=0 and y2(0)=y20
where f(x,y1,y2) = -axy1-y1, a=0.03 and y20 = 0.25
6 个评论
Jan
2019-5-3
I cannot know, what you want to insert for the questionmarks in
plot(x, y(1,:), x, ??, ‘*’)
because you did not explain, what you want to achieve. x=0:h:2*pi can be correct of false depending on what you want as values for x. It is impossible to decide if something is correct or not only based on the code. Knowing its purpose is essential.
By the way, use single quotes instead of the apostrophes:
plot(x, y(1,:), x, ??, ‘*’)
% ^ ^ Use '
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Function Creation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!