필터 지우기
필터 지우기

How can I convert 2-D array to 1-D array.

조회 수: 4 (최근 30일)
Bhavnish
Bhavnish 2012년 9월 18일
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일
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일
oprtn_pts = randn(3,2);
oprtn_pts = reshape(a,6,1);
It takes the elements from oprtn_pts columnwise.
  댓글 수: 3
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... :-)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by