Both function plots start at 1, even though I have time step as t=0:6

조회 수: 2 (최근 30일)
Ashleigh
Ashleigh 2024년 9월 1일
댓글: Ashleigh 2024년 9월 1일
I am working to plot two basic functions from 0 to 6. When the section is ran, the plots are correct except that it is starting from 1 and not 0.
a_2 = -16;
a_3 = 1/3;
t = 0:6;
v = a_2 + (3*a_3*(t.^2));
a = 6*a_3*t;
plot(v)
hold on
plot(a)
hold off
xlabel('Time (s)')
ylabel('Velocity (m/s), Acceleration (m/s^2)')
xlim([0,t(end)])
ylim([-17,24])

채택된 답변

Torsten
Torsten 2024년 9월 1일
Use
plot(t,v)
plot(t,a)
instead of
plot(v)
plot(a)

추가 답변 (1개)

Sam Chak
Sam Chak 2024년 9월 1일
a_2 = -16;
a_3 = 1/3;
t = 0:6;
v = a_2 + (3*a_3*(t.^2));
a = 6*a_3*t;
plot(t, v) % <-- plot(xvalues, yvalues)
hold on
plot(t, a)
hold off
xlabel('Time (s)')
ylabel('Velocity (m/s), Acceleration (m/s^2)')
xlim([0,t(end)])
ylim([-17,24])
grid on, grid minor

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by