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

 Akzeptierte Antwort

Thomas
Thomas am 13 Feb. 2014

1 Stimme

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

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 13 Feb. 2014

Kommentiert:

am 13 Feb. 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by