採用された回答

Youssef  Khmou
Youssef Khmou 2013 年 5 月 29 日

2 投票

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

サインインしてコメントする。

その他の回答 (5 件)

Royi Avital
Royi Avital 2011 年 6 月 13 日

6 投票

This might work as well (For 1D Vectors):
vReversed = v(end:-1:1);
Good luck!

3 件のコメント

Shweta Kanitkar
Shweta Kanitkar 2013 年 5 月 29 日
v(end:-1:1) subtracts each element from v(end) by 1.
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
Cyrus David Pastelero 2020 年 7 月 8 日
This is what I am looking for. Thank you.

サインインしてコメントする。

Walter Roberson
Walter Roberson 2011 年 6 月 13 日

2 投票

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 日

1 投票

use fliplr()
Varshitha Gouri
Varshitha Gouri 2026 年 7 月 7 日 3:41

0 投票

v = [1 2 3 4 5];
reversed = flip(v);
disp(reversed);
5 4 3 2 1
DEVARAKONDA STEPHEN
DEVARAKONDA STEPHEN 約8時間 前

0 投票

v = [10, 20, 30, 40, 50];
n = length(v);
for i = 1:n
rev(i) = v(n - i + 1);
end
disp('Reversed vector:');
Reversed vector:
disp(rev);
50 40 30 20 10

2 件のコメント

Stephen23
Stephen23 約7時間 前
Doing this in a loop is very inefficient: avoid this approach!
Steven Lord
Steven Lord 約4時間 前
It's also incorrect in some cases, since rev was not preallocated.
v = (1:5).'
v = 5×1
1 2 3 4 5
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
n = length(v);
for i = 1:n
rev(i) = v(n - i + 1);
end
rev
rev = 1×5
5 4 3 2 1
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
whos v rev
Name Size Bytes Class Attributes rev 1x5 40 double v 5x1 40 double
In this case rev is the wrong size/shape! Compare with one of the recommended approach:
flippedV = flip(v)
flippedV = 5×1
5 4 3 2 1
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
whos flippedV v
Name Size Bytes Class Attributes flippedV 5x1 40 double v 5x1 40 double
In fact, the lack of preallocation may make the code error. Let me show the recommended approach first then show the error case. Because the previous section of code effectively "preallocated" rev, I need to clear it to simulate running the code in isolation.
v = zeros(1, 0);
flippedV = flip(v)
flippedV = 1×0 empty double row vector
clear rev % Simulate running the code without preallocation
n = length(v);
for i = 1:n
rev(i) = v(n - i + 1);
end
rev % doesn't exist, so this will error
Unrecognized function or variable 'rev'.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeResizing and Reshaping Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by