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

[Matlab.Matrix] reshape

时间:2014-09-25 13:37:18      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:sp   r   bs   res   5   matlab   mat   nbsp   matrix   

a=[1,2,3;4,5,6;7,8,9];

  a=reshape(a,1,9);  a=[1,4,7,2,5,8,3,6,9];

  a=reshape(a,9,1);  a=[1;4;7;2;5;8;3;6;9];

a=[1,2,3,4,5,6,7,8,9];

  a=reshape(a,3,3);  a=[1,4,7;2,5,8;3,6,9];

也就是说,reshape以列为主体。

 

[Matlab.Matrix] reshape

标签:sp   r   bs   res   5   matlab   mat   nbsp   matrix   

原文地址:http://www.cnblogs.com/southernduck/p/3992150.html

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