how to convert matrix A 1 x 200 into 100 x2
Show older comments
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
Accepted Answer
More Answers (1)
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)';
Categories
Find more on Creating and Concatenating Matrices 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!