function error = skydiver_zero(m) % Function to calculate the zero equation for the % skydiver problem given a guess at the skydiver mass m. g = 9.81; c = 0.25; t = 4; v = skydiver_func1(m,g,c,t); vdesired = 36; error = v-vdesired;