How to move elements of a vector
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Image Analyst
el 25 de Nov. de 2018
There are many possible ways, like using deal(). What is your rule for the new order?
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!