why get this message "Array indices must be positive integers or logical values." i for loop?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I got the error message " Array indices must be positive integers or logical values"
I would appreciate any help. thanks in advance
for i = 1:0:1:600
iNext = i + 1;
do...
x(iNext) >= x(i) % assumed "i" is the current step and "iNext" is the Next step
end
0 Kommentare
Antworten (1)
KALYAN ACHARJYA
am 15 Mai 2022
Bearbeitet: KALYAN ACHARJYA
am 15 Mai 2022
Yes, Matlab allows indexing for positive integer only
x=zeros(1,600);
for i = 1:600
iNext=i + 1;
x(iNext)=x(i) % assumed "i" is the current step and "iNext" is the Next step
end
#Pls see the iteration process and your requirements
0 Kommentare
Siehe auch
Kategorien
Mehr zu Startup and Shutdown 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!