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 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