如何获取数组的镜像(MATLAB)?
给定一个数组:
array1 = [1 2 3];
我必须像这样反转它:
array1MirrorImage = [3 2 1];
到目前为止,我得到了这个丑陋的解决方案:
array1MirrorImage = padarray(array1, [0 length(array1)], 'symmetric', 'pre');
array1MirrorImage = array1MirrorImage(1:length(array1));
是否有更漂亮的解决方案?
Given an array:
array1 = [1 2 3];
I have to reverse it like so:
array1MirrorImage = [3 2 1];
So far I obtained this ugly solution:
array1MirrorImage = padarray(array1, [0 length(array1)], 'symmetric', 'pre');
array1MirrorImage = array1MirrorImage(1:length(array1));
Is there a prettier solution to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
更新:在较新版本的 MATLAB(R2013b 及更高版本)中,首选使用函数
flip
而不是flipdim
,它具有相同的调用语法:Tomas 有正确的答案。 要添加一点,您还可以使用更通用的
flipdim< /code>
:
一个额外的小技巧...如果出于某种原因你必须翻转二维数组的两个维度,你可以调用
flipdim
两次:或调用
rot90
:UPDATE: In newer versions of MATLAB (R2013b and after) it is preferred to use the function
flip
instead offlipdim
, which has the same calling syntax:Tomas has the right answer. To add just a little, you can also use the more general
flipdim
:An additional little trick... if for whatever reason you have to flip BOTH dimensions of a 2-D array, you can either call
flipdim
twice:or call
rot90
:另一个简单的解决方案是
您也可以在特定维度上使用它。
Another simple solution is
You can use this on a particular dimension, too.
您可以使用
http://www.eng-tips.com /viewthread.cfm?qid=149926&page=5
you can use
http://www.eng-tips.com/viewthread.cfm?qid=149926&page=5
使用那个 man:% 到数组的镜像 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; g=ra; a=a+1; 对于 j=1:cn=n+1;d(i,j)=x(g,n); 结尾
结束显示(y)
Use that man:%to array's mirror r=input('insert rows');c=('insert columns')b=size(x); r=b(1);c=b(2); a=0; y(r,c)=0;
for i=1:r n=0; g=r-a; a=a+1; for j=1:c n=n+1;d(i,j)=x(g,n); end
end disp(y)