how do i reverse a vector

 Risposta accettata

Youssef  Khmou
Youssef Khmou il 29 Mag 2013
hi,
To reverse a vector try the function ' wrev' , here is an example :
r=wrev(1:4)
If you to control the degree of reverse/shifting try 'circshift' function.

2 Commenti

Matthew Eicholtz
Matthew Eicholtz il 27 Giu 2013
I like this solution. Does anybody know how fliplr and wrev differ in this particular case? Is one more computationally expensive than the other?
wrev(vect) -> vect(end:-1:1)
please try:
>> open wrev

Accedi per commentare.

Più risposte (3)

Royi Avital
Royi Avital il 13 Giu 2011
This might work as well (For 1D Vectors):
vReversed = v(end:-1:1);
Good luck!

3 Commenti

Shweta Kanitkar
Shweta Kanitkar il 29 Mag 2013
v(end:-1:1) subtracts each element from v(end) by 1.
Walter Roberson
Walter Roberson il 28 Giu 2013
Matt Eicholtz points out that Shweta's comment is incorrect; no subtraction is done, only indexing.
This is what I am looking for. Thank you.

Accedi per commentare.

Walter Roberson
Walter Roberson il 13 Giu 2011

2 voti

fliplr() or flipud()
... But I suspect this is a class assignment. You will need to use your knowledge of MATLAB indexing and looping to work out your assignments for yourself.

Community Treasure Hunt

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

Start Hunting!

Translated by