Azzera filtri
Azzera filtri

How to rotate a vector

5 visualizzazioni (ultimi 30 giorni)
Guendouz walid
Guendouz walid il 23 Gen 2023
Commentato: Guendouz walid il 23 Gen 2023
Hello ! I wonder if anyone has an elegant way to rotate a vector to create symmetry for Example:
[110 120 130 140 150 160 180]
to
[180 160 150 140 130 120 110]
Thanks in advance!
Walid

Risposta accettata

Askic V
Askic V il 23 Gen 2023
Spostato: Fangjun Jiang il 23 Gen 2023
If you want to reverse elements, then just use flip function.
v = 1:10
v = 1×10
1 2 3 4 5 6 7 8 9 10
v_f = flip(v)
v_f = 1×10
10 9 8 7 6 5 4 3 2 1

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by