Error using sub2ind(line43)
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have this code
idx = sub2ind(size(map),ygrid,xgrid)
It causes Error using sub2ind(line43) Out of range subscript.
But I check the subscripts: where size(map) gives
ans = 5 5
and
all(find(ygrid<=5 & ygrid>=1))
gives
ans = logical
1
and also
all(find(xgrid<=5 | xgrid>=1))
gives
ans = logical
1
It seems all of the subscripts I specified in ygrid and xgrid. So I don't know why the error happens.
0 Kommentare
Antworten (1)
Walter Roberson
am 26 Apr. 2017
You tested
all(find(xgrid<=5 | xgrid>=1))
Your test should have been &
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!