Move elements of a vector to the rigth.

1 Ansicht (letzte 30 Tage)
Julen Vicente Pipaon
Julen Vicente Pipaon am 27 Mär. 2021
Hi.
I want to know how I move all the elements of a vector to the rigth.
For example:
[0 0 0 1 0 0] =====> [0 0 0 0 1 0]
or
[ 1 2 3 4 5] =====> [ 5 1 2 3 4 ]

Akzeptierte Antwort

DGM
DGM am 27 Mär. 2021
Try this:
a=[1 2 3 4 5]
b=circshift(a,[0 1])

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by