How can I convert 2-D array to 1-D array.
显示 更早的评论
I am using a variable oprtn_pts. whose size is 3 2.
I want to convert this into 6*1. How can I do this?
采纳的回答
更多回答(1 个)
Wayne King
2012-9-18
编辑:Wayne King
2012-9-18
oprtn_pts = randn(3,2);
oprtn_pts = reshape(a,6,1);
It takes the elements from oprtn_pts columnwise.
3 个评论
Bhavnish
2012-9-18
Andrei Bobrov
2012-9-18
Hi Bhavnish! Please see my answer.
Bhavnish
2012-9-18
类别
在 帮助中心 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!