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

 採用された回答

Thomas
Thomas 2014 年 2 月 13 日

1 投票

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

1 件のコメント

Joseph
Joseph 2014 年 2 月 13 日
great thank you

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

質問済み:

2014 年 2 月 13 日

コメント済み:

2014 年 2 月 13 日

Community Treasure Hunt

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

Start Hunting!

Translated by