필터 지우기
필터 지우기

Error using Plot, Vectors must be the same length

조회 수: 65 (최근 30일)
NERANJEN S
NERANJEN S 2021년 8월 1일
댓글: Scott MacKenzie 2021년 8월 1일
>> Height = [0;3;6;9;12;15];
>> for i = 1:5
subplot(1,5,i)
plot([0;v(:,i)], Height);
ylabel('Height of the structure (m)','FontSize',12);
title(['Mode Shape ',num2str(i)],'FontSize',18)
end
How to rectify this?!
  댓글 수: 2
Chunru
Chunru 2021년 8월 1일
what is "v" in your code?
NERANJEN S
NERANJEN S 2021년 8월 1일
@Chunru Here, v is a 3x3 matrix

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

채택된 답변

Scott MacKenzie
Scott MacKenzie 2021년 8월 1일
편집: Scott MacKenzie 2021년 8월 1일
Your vector Height has six elements, with 0 as the first element. Given this, your apparent effort to plot v vs. Height is causing the error because [0; v] and Height need to be the same length. The code below achieves this with test data for v (replace as necessary) The code also sets to length(Height) the number of iterations in the for-loop and the number of subplots (adjust as necessary).
% data given in question (6x1 vector)
Height = [0;3;6;9;12;15];
% test data (replace as needed)
v = rand(length(Height)-1,10);
for i = 1:length(Height)
subplot(1,length(Height),i)
plot([0; v(:,i)], Height);
ylabel('Height of the structure (m)','FontSize',12);
title(['Mode Shape ',num2str(i)],'FontSize',10)
end
  댓글 수: 3
NERANJEN S
NERANJEN S 2021년 8월 1일
Ok sir! Now understood! Thanks a lot!
Scott MacKenzie
Scott MacKenzie 2021년 8월 1일
You're welcome. Good luck.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by