Error using plot Vectors must be the same length.

조회 수: 5 (최근 30일)
Emma Windsor
Emma Windsor 2019년 8월 15일
답변: Sourav Bairagya 2019년 8월 19일
Hi I am pretty new to Matlab and I am trying to plot Acceleration and driving style against time however the time vector is not the same size. I'm not sure how I fix this.
figure(3);
plot(t_sec,Acceleration,'r');
hold on
plot(t_sec,ds_mapping,'c');
Acceleration 1x620
ds_mapping 1x620
t_sec 621x1
Please could you advise?
Thanks.
  댓글 수: 3
Guillaume
Guillaume 2019년 8월 15일
편집: Guillaume 2019년 8월 15일
Well, you need to find out why the two are not the same length when they should be. It's not something we can answer, and what you should do will depend entirely on what that answer is.
Perhaps, as infinity says, you've calculated the acceleration by taking the diff of the velocity which would explain why it has one element less (in which case maybe you should have used gradient instead of diff). That doesn't explain ds_mapping.
Or perhaps the explanation is something else entirely. Maybe you've loaded the wrong time vector.
KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 8월 15일
Please share complete code.

댓글을 달려면 로그인하십시오.

답변 (1개)

Sourav Bairagya
Sourav Bairagya 2019년 8월 19일
In your code, “Acceleration” and “ds_mapping”are row vectors whether “t_sec” is a column vector.
Hence, you should first convert “t_sec” into a row vector like “Acceleration”and “ds_mapping”.
Now, as your Y-axis data i.e. “Acceleration” and “ds_mapping” have 620 elements only, hence you should consider only the first 620 elements of your X-axis data i.e. “t_sec”.
A demo code is attached here to illustrate the whole plotting procedure mentioned above:
Acceleration=rand(1,620); % A Demo Acceleration row vector
ds_mapping=rand(1,620); % A Demo ds_mapping row vector
t_sec=rand(621,1); % A Demo t_sec column vector
t_sec=t_sec'; % converting t_sec into a row_vector
plot(t_sec(1:end-1),Acceleration); % Considering only 620 elements of t_sec and plotting
hold on;
plot(t_sec(1:end-1), ds_mapping);
hold off;

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by