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)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 2-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