MATLAB: Trouble plotting a graph

plotting a graph

Trying to plot the speed of a car
V=1.5*t^2
need to plot speed vs time

Best Answer

Try
t=1:0.1:10;
V=1.5*t.^2;
plot(t,V)
Related Question