trouble plotting a graph

2 次查看(过去 30 天)
Joseph
Joseph 2014-2-13
评论: Joseph 2014-2-13
Trying to plot the speed of a car
V=1.5*t^2
need to plot speed vs time

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by