如何获取阵列的镜像(MATLAB)?

时间:2009-02-01 23:43:22

标签: arrays matlab matrix

给定一个数组:

array1 = [1 2 3];

我必须这样扭转它:

array1MirrorImage = [3 2 1];

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

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

对此有更好的解决方案吗?

4 个答案:

答案 0 :(得分:31)

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

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



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

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

另外一个小技巧......如果由于某种原因你必须翻转2-D数组的两个维度,你可以调用flipdim两次:

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

或致电rot90

a = rot90(a, 2);  % Rotates matrix by 180 degrees

答案 1 :(得分:19)

另一个简单的解决方案是

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

您也可以在特定维度上使用此功能。

b = a(:,end:-1:1); % Flip the columns of a

答案 2 :(得分: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

答案 3 :(得分:-1)

使用那个man:%到阵列的镜像r = input('插入行'); c =('插入列')b = size(x); r = b(1); c = b(2); a = 0; y(r,c)= 0; 对于i = 1:r n = 0; g = r-a; a = a + 1;对于j = 1:c n = n + 1; d(i,j)= x(g,n);结束 结束显示(y)