How can I resolve index exceeding error while I plot something?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jinah Lee
am 25 Mär. 2017
Kommentiert: Jinah Lee
am 25 Mär. 2017
Hello all, I'm keep having error when I tried to put title on my plot. The error message said "Index exceeds matrix dimensions." Here's my code, so please let me know why I got this message. Thanks!
figure
title('2')
h = plot(dataCenter(:,1),dataCenter(:,2),'Color','b')
2 Kommentare
kowshik Thopalli
am 25 Mär. 2017
Can you tell us about the dimensions of dataCenter? or upload it ? and for the title to be added to the graph, please use the command after the plot command
Akzeptierte Antwort
Jan
am 25 Mär. 2017
The error message is clear: An indexing operation in this line exceeds the defined array sizes:
h = plot(dataCenter(:,1),dataCenter(:,2),'Color','b')
Either dataCenter has 1 column only, or you have redefined plot by an array and the inputs are interpreted as indices. You can check both by using the debugger. Type this in the command window:
dbstop if error
Now run the code again until it stops at the problem. Now examine, what's going on:
size(dataCenter)
which plot -all
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!