interchange positions in a vector

12 visualizaciones (últimos 30 días)
Maria Lancheros Vega
Maria Lancheros Vega el 14 de Nov. de 2020
Respondida: Ameer Hamza el 14 de Nov. de 2020
I have a vector let's say y = [1 2 3 4] and I want my next output to be y = [2 3 4 1] and then y = [3 4 1 2].
how can I do that without a for?

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 14 de Nov. de 2020
You can use circshift
y = [1 2 3 4];
y1 = circshift(y, -1);
y2 = circshift(y, -2);
Result
>> y1
y1 =
2 3 4 1
>> y2
y2 =
3 4 1 2

Más respuestas (0)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by