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)
  1 件のコメント
Joseph
Joseph 2014 年 2 月 13 日
great thank you

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-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