21

给定一个数组:

array1 = [1 2 3];

我必须像这样反转它:

array1MirrorImage = [3 2 1];

到目前为止,我得到了这个丑陋的解决方案:

array1MirrorImage = padarray(array1, [0 length(array1)], 'symmetric', 'pre');
array1MirrorImage = array1MirrorImage(1:length(array1));

有没有更漂亮的解决方案?

4

4 回答 4

31

更新:在较新版本的 MATLAB(R2013b 及更高版本)中,最好使用该函数flip而不是flipdim,它具有相同的调用语法:

a = flip(a, 1);  % Reverses elements in each column
a = flip(a, 2);  % Reverses elements in each row



托马斯有正确的答案。要添加一点,您还可以使用更通用的flipdim

a = flipdim(a, 1);  % Flips the rows of a
a = flipdim(a, 2);  % Flips the columns of a

一个额外的小技巧......如果出于某种原因您必须翻转二维数组的两个维度,您可以调用flipdim两次:

a = flipdim(flipdim(a, 1), 2);

或致电rot90

a = rot90(a, 2);  % Rotates matrix by 180 degrees
于 2009-02-02T00:25:12.230 回答
20

另一个简单的解决方案是

b = a(end:-1:1);

您也可以在特定维度上使用它。

b = a(:,end:-1:1); % Flip the columns of a
于 2009-02-04T17:34:28.267 回答
14

您可以使用

rowreverse = fliplr(row) %  for a row vector    (or each row of a 2D array)
colreverse = flipud(col) % for a column vector (or each column of a 2D array)

genreverse = x(end:-1:1) % for the general case of a 1D vector (either row or column)

http://www.eng-tips.com/viewthread.cfm?qid=149926&page=5

于 2009-02-02T00:10:32.570 回答
-1

使用那个 man:%to 数组的镜像 r=input('insert rows');c=('insert columns')b=size(x); r=b(1);c=b(2); a=0;y(r,c)=0;对于 i=1:rn=0; 克=拉; a=a+1; 对于 j=1:cn=n+1;d(i,j)=x(g,n); 结束结束显示(y)

于 2020-08-11T03:52:13.770 回答