I want to plot a line but got a curve
이전 댓글 표시
In my data, t = (0:0.01:0.64)', a is a colunm of constants (-9.81) of length 63. I want to plot a vs. t. It's supposed to be a horizontal line, but I got a graph with fluctuations around -9.81. How can I fix this? I used this code:
plot(t(1:length(a)),a)
댓글 수: 3
KSSV
2020년 8월 21일
How did you plot? Show us the code and picture.
Walter Roberson
2020년 8월 21일
What shows up for unique(diff(a))
Jiaqi Wang
2020년 8월 21일
채택된 답변
추가 답변 (1개)
Alan Stevens
2020년 8월 21일
Just
t = (0:0.01:0.64)';
a = -9.81*ones(size(t));
plot(t,a)
gives a horizontal line.
카테고리
도움말 센터 및 File 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!