Question: Solve this with MATLAB. Thank you! Please use the function midpoint as shown in the image below. Below is the text of the midpoint fucntion
Solve this with MATLAB. Thank you!

Please use the function midpoint as shown in the image below.

Below is the text of the midpoint fucntion
function [t,y] = Midpoint(dydt,tspan,y0,h) t = tspan(1):h:tspan(2); n = length(t); if t(n) Newton's law describes the motion of a rocket-propelled sled as dv m=f-cv dt where m is the sled mass, f is force of the rocket thrust, and is the drag constant due to air resistance. Assume m = 1000 kg, f = 75000 N and v(0) = 0m/s. Determine the velocity of the sled from t = Os to 10s (increments of 0.1s) using the midpoint method for c = 50, 100, 500, 1000 and 2000 Ns/m. You must use a for loop to go through each value of c. On a single figure, plot the velocity against time for each cand provide a statement that contains the velocity of the sled at 10s for each c. E.g. v=???m/s at t=10s if c=50 v=???m/s at t=10s if c=100 function [t, y) = Midpoint (dydt, tspan, yo, h) t = tspan (1):h:tspan (2); n = length(t); if t(n)