how do i reverse a vector

217 次查看(过去 30 天)
so far i have this
function [Vout]=reverse(Vin)

采纳的回答

Youssef  Khmou
Youssef Khmou 2013-5-29
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 个评论
Matthew Eicholtz
Matthew Eicholtz 2013-6-27
I like this solution. Does anybody know how fliplr and wrev differ in this particular case? Is one more computationally expensive than the other?
Andrei Bobrov
Andrei Bobrov 2013-6-28
wrev(vect) -> vect(end:-1:1)
please try:
>> open wrev

请先登录,再进行评论。

更多回答(3 个)

Royi Avital
Royi Avital 2011-6-13
This might work as well (For 1D Vectors):
vReversed = v(end:-1:1);
Good luck!
  3 个评论
Walter Roberson
Walter Roberson 2013-6-28
Matt Eicholtz points out that Shweta's comment is incorrect; no subtraction is done, only indexing.
Cyrus David Pastelero
This is what I am looking for. Thank you.

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2011-6-13
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.

goga
goga 2011-11-19
use fliplr()

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by