trouble plotting a graph

2 visualizaciones (últimos 30 días)
Joseph
Joseph el 13 de Feb. de 2014
Comentada: Joseph el 13 de Feb. de 2014
Trying to plot the speed of a car
V=1.5*t^2
need to plot speed vs time

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by