How can I convert 2-D array to 1-D array.
Show older comments
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?
Accepted Answer
More Answers (1)
Wayne King
on 18 Sep 2012
Edited: Wayne King
on 18 Sep 2012
oprtn_pts = randn(3,2);
oprtn_pts = reshape(a,6,1);
It takes the elements from oprtn_pts columnwise.
3 Comments
Bhavnish
on 18 Sep 2012
Andrei Bobrov
on 18 Sep 2012
Hi Bhavnish! Please see my answer.
Bhavnish
on 18 Sep 2012
Categories
Find more on Data Type Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!