Info
This question is closed. Reopen it to edit or answer.
index exceeds matrix demension
1 view (last 30 days)
Show older comments
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 Comments
Walter Roberson
on 4 Feb 2018
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
Answers (1)
Image Analyst
on 4 Feb 2018
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.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!