码迷,mamicode.com
首页 > 其他好文 > 详细

matlab使用reshape时按照列优先原则取元素和摆放元素

时间:2014-06-14 18:08:47      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   color   

参考 http://blog.csdn.net/superdont/article/details/3992033

a=[1  2

3  4]

如果使用b=reshape(a,1,4),则得到的结果是  b=[1 3 2 4]

如果想得到b=[1 2 3 4],  需要使用  b=reshape(a‘,1,4)

因为reshape使用的列优先!(就是说按照列取元素,然后按照列重新放元素)

b转化回去是同样的道理。

例题如下:

 

>> a=[1 ,2 ;3,4]
a =
     1     2
     3     4
>> b=reshape(a,1,4)
b =
     1     3     2     4
>> b=reshape(a,1,4)
b =
     1     2     3     4
>> a=reshape(b,2,2)
a =
     1     3
     2     4
>> a=reshape(b,2,2)
a =
     1     3
     2     4

 


matlab使用reshape时按照列优先原则取元素和摆放元素,布布扣,bubuko.com

matlab使用reshape时按照列优先原则取元素和摆放元素

标签:style   class   blog   code   http   color   

原文地址:http://www.cnblogs.com/whaozl/p/3787657.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!