How to move elements of a vector
Mostra commenti meno recenti
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
Image Analyst
il 25 Nov 2018
There are many possible ways, like using deal(). What is your rule for the new order?
cami
il 26 Nov 2018
Risposte (1)
A([ 3:4:end, 4:4:end]) = A([ 4:4:end, 3:4:end])
Categorie
Scopri di più su Characters and Strings in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!