trouble plotting a graph

3 visualizzazioni (ultimi 30 giorni)
Joseph
Joseph il 13 Feb 2014
Commentato: Joseph il 13 Feb 2014
Trying to plot the speed of a car
V=1.5*t^2
need to plot speed vs time

Risposta accettata

Thomas
Thomas il 13 Feb 2014
Try
t=1:0.1:10;
V=1.5*t.^2;
plot(t,V)

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by