MATLAB: Split one matrix to 2 matrix

split array

Hello, I have matrix called A 74X2 and I need 2 Matrix B,C 74X1 each one.
How I can split matrix A to B (column 1 of A) and C (column 2 of A)?
Thank you!

Best Answer

B=A(:,1)
C=A(:,2)
Read the documentation