Euler's method
Show older comments
I was given a semi-finished chunk of code and asked to implement euler's method to solve it.
I've looked at countless examples of implementations but i think the finished chunk confuse me
I have acces to the function myode(t,y) that should give me a specific solution based on t and y
This is the code I was given.
dt=.1;
t_values=[0:dt:500];
numsteps=length(t_values);
y_initial=[50;1];
y_values=zeros(2,numsteps);
y_values(:,1)=y_initial;
for i1=2:numsteps;
y_values(:,i1)=
The issue I want help with is understanding how to utilize the pre-written code, my current attempt is
y_values(:,i1)= y_values(i1) + dt * myode(t_values(i1),y_values(i1))
Any help is greatly appreciated. I've tried rewriting the code back and forth for a day now and i'm not making any progress.
Best regards
Accepted Answer
More Answers (0)
Categories
Find more on File Operations 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!