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?

 採用された回答

Andrei Bobrov
Andrei Bobrov 2012 年 9 月 18 日

0 投票

one way
out = oprtn_pts(:);
or
out = oprtn_pts.';
out = out(:);
other:
out = reshape(oprtn_pts,[],1);
or
out = reshape(oprtn_pts.',[],1);

その他の回答 (1 件)

Wayne King
Wayne King 2012 年 9 月 18 日
編集済み: Wayne King 2012 年 9 月 18 日

0 投票

oprtn_pts = randn(3,2);
oprtn_pts = reshape(a,6,1);
It takes the elements from oprtn_pts columnwise.

3 件のコメント

Bhavnish
Bhavnish 2012 年 9 月 18 日
Wayne, I want to generalize this case. Now, let's assume that I don't know what is size of oprtn_pts. I am getting this size by using command s = size(oprtn_pts); Now say that s = m n (We don't know what is there inside). How can I convert this into 1-D array? Please suggest something on this.
Andrei Bobrov
Andrei Bobrov 2012 年 9 月 18 日
Hi Bhavnish! Please see my answer.
Bhavnish
Bhavnish 2012 年 9 月 18 日
Hi Andrei, Thanks a lot for the help. I din't refresh my page earlier, so wasn't able to see your response. Yeah, your response is working absolutely fine for me... :-)

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by