% Differentiation of v(t) = 9.7*(1-(20/50).^4).^2
syms t % Define t as a symbolic variable v = 9.7*(1-(20/50).^4).^2; % Define v as a function of t diff_v = diff(v, t) % Calculate the derivative of v with respect to t
main.m75 chars3 lines
gistlibby LogSnag