function vprime = parachuteODE(t, v) % % parachuteODE % % Function representing the right-hand side of the single first-order ODE % for the velocity of the parachutist m = 70; g = 9.8; c_D = 10; vprime = g - c_D*v/m;