Question: Please make MATLAB coding for Runge Kutta method for the first order ordinary differential equations. Question: y'=1-x+4y y(0)=1 x=[0,3] h=0.1 The MATLAB coding should show
Please make MATLAB coding for Runge Kutta method for the first order ordinary differential equations.
Question:
y'=1-x+4y
y(0)=1
x=[0,3]
h=0.1
The MATLAB coding should show output table as such below from x=0 to x=3:
| i | x | k1 | k2 | k3 | k4 | y(xi) |
| 1 | 0.0 | ** | ** | ** | ** | ** |
| 2 | 0.1 | ** | ** | ** | ** | ** |
| : | : | : | : | : | : | : |
| 31 | 3 | ** | ** | ** | ** | ** |
Also, the code also need to show the plot of (xi) and (yi) for each point in the table.
Finally, please screenshot your work and put it here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
