Error 'Array indices must be positive integers or logical values.' when the number of indices is large
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Soan Duong
am 5 Aug. 2020
Kommentiert: Soan Duong
am 5 Aug. 2020
Hi all,
I have two vectors:
- p of size 32x1,
- b of size 300000x1. Value range of elements of b is [1, 32].
I want to assign
a = p(b)
And I got error: Array indices must be positive integers or logical values.
It was fine when I tried
a = p(b(1:40000)
However, MATLAB releases the error again with
a = p(b(1:50000)
Do you have any ideas on what problem that I encounted? Any help you have to offer would be greatly appreciated.
0 Kommentare
Akzeptierte Antwort
madhan ravi
am 5 Aug. 2020
Bearbeitet: madhan ravi
am 5 Aug. 2020
In this case it’s probable that b has elements less than 1 and greater than 32.
Outside_bounds = nnz((b < 1) | (b > 32)) % to check
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!