Info

この質問は閉じられています。 編集または回答するには再度開いてください。

index exceeds matrix demension

3 ビュー (過去 30 日間)
PetronasAMG
PetronasAMG 2018 年 2 月 3 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
figure(1)
hold on;
plot(1.25,1.25,'ro');
i=1;
while i <= 20
plot([xi(i),xj(i)],[yi(i),yj(i)],'b');
i= i+1
end
title('graph')
grid;
box;
ax = gca;
ax.YAxisLocation = 'origin';
keep on getting index exceeds matrix demension... could you please help??
  2 件のコメント
Jan
Jan 2018 年 2 月 4 日
Please post the complete error message. Then the readers do not have to guess, where the error occurs. Without your input data, we cannot guess, which variable is affected. But it could even be a redefining of "title" as a variable.
Walter Roberson
Walter Roberson 2018 年 2 月 4 日
Note that when i becomes 2, then xi(i) will not refer to a variable named x2: it will continue to refer to a variable xi

回答 (1 件)

Image Analyst
Image Analyst 2018 年 2 月 4 日
Your 4 vectors have a length less than 20. Before the loop put this, and you'll see (in the command window)
size(xi)
size(xj)
size(yi)
size(yj)
Do they all go up to 20? No, evidently not or you wouldn't be getting an error message. If you still need help, attach your xi, xj, yi, and yj.

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by