Why do i have the "Array indices must be positive integers or logical values" error?

1 Ansicht (letzte 30 Tage)
Hi, im new in matlab and im trying to move one place to the right the elements of an array
cadena2 = [1,2,3,4,5];
n = length(cadena2);
aux = cadena2(n);
for i = n:-1:1
cadena2(i)=cadena2((i-1));
end
cadena2(1)=aux;
cadena2
i have this error:
Array indices must be positive integers or logical values.
Error in Clase01102 (line 22)
cadena2(i)=cadena2((i-1));
if you can help i really apreciate it

Akzeptierte Antwort

Jon
Jon am 22 Okt. 2021
Bearbeitet: Jon am 22 Okt. 2021
Your problem is that in your loop i goes from 5 down to 1 but you index cadena2((i-1), and for the last loop when i = 1 this equals zero which is not allowed. Indices must be positive integers
The MATLAB function circshift is very helpful for this kind of operation. You can do it in one line
y = circshift(cadena2,1)

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements 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!

Translated by