MATLAB: I have a matrix which is [y1 x1 y2 x2 y3 x3…….]. The size variable depends on the input, I wanna extract y(i) and x(i) seperately from this matrix.

matrix manipulation

m=[y1,x2,y2,x2,y3,x3,…….] I wanna extract y(i) as y_column=[y1;y2;y3;y4;….] and x_column=[x1;x2;x3;x4;…….]

Best Answer

a=1:10
y=a(1:2:end)'
x=a(2:2:end)'
Related Question