当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《如何获取阵列的镜像(MATLAB)?》经验,为你挑选了3个好方法。

给定一个数组:

array1 = [1 2 3];

我必须这样扭转它:

array1MirrorImage = [3 2 1];

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

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

有更漂亮的解决方案吗?



1> gnovice..:

更新:在较新版本的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

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

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

或致电rot90:

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


对该选项的一个警告是矩阵似乎被重新整形为1-by-length(a)向量,因此您必须在之后调用RESHAPE.这可能是特定于版本的(我正在运行MATLAB ver.7.1).

2> Scottie T..:

另一个简单的解决方案

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

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

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



3> Tomas Aschan..:

您可以使用

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

推荐阅读
wurtjq
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有