How to move elements of a vector

I'd want the code that given the vector A
A=[ 1 2 4 3 0 1 5 3 7 9]
returns
A=[ 1 2 3 4 0 1 3 5 7 9]
thanks

2 Commenti

There are many possible ways, like using deal(). What is your rule for the new order?
cami
cami il 26 Nov 2018
i want to rebuild the original matrix...
in my case the best way would be using fliplr

Accedi per commentare.

Risposte (1)

Matt J
Matt J il 25 Nov 2018
Modificato: Matt J il 25 Nov 2018
A([ 3:4:end, 4:4:end]) = A([ 4:4:end, 3:4:end])

Categorie

Tag

Richiesto:

il 25 Nov 2018

Commentato:

il 26 Nov 2018

Community Treasure Hunt

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

Start Hunting!

Translated by