Runge Kutta for system of differential equations
2 views (last 30 days)
Show older comments
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 Comments
Jan
on 3 May 2019
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 '
Answers (0)
See Also
Categories
Find more on Function Creation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!