how to convert matrix A 1 x 200 into 100 x2

조회 수: 3 (최근 30일)
Laura
Laura 2013년 6월 10일
I have a matrix A=( x1 y1 x2 y2....)
Now I want all the value of x in one column and y in one column.
I had been tried
for i= 1: N
x= A(1,2*i-1);
y= A(1,2*i);
end
Please helps. Thanks

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 6월 10일
편집: Azzi Abdelmalek 2013년 6월 10일
Edit
A=[1 2 3 4 5 6]
out=reshape(A,2,[])'
%or
out=[A(1:2:end)' A(2:2:end)']

추가 답변 (1개)

Jan
Jan 2013년 6월 10일
편집: Jan 2013년 6월 10일
You almost got it. Simply move the loop into the indexing:
x = A(1, 1:2:2*N-1)';
y = A(1, 2:2:2*N)';

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by