How to separate matrix row?
6 views (last 30 days)
Show older comments
let's say
A = [ 1 2; 1 2; 1 2]
A =
1 2
1 2
1 2
Any command that can I separate it into turn into
B =
1 2
1 2
1 2
C =
0 2
0 2
0 2
Thanks!!
-------------- I try to do it like this, but doesn't work
B = A(:,1)
B =
1
1
1
1 Comment
Wayne King
on 30 May 2012
you dramatically changed what you wanted from this post in just a few minutes, so I'm not sure exactly what result you want now.
Accepted Answer
More Answers (1)
Wayne King
on 30 May 2012
A = [ 1 2; 1 2; 1 2];
A(:,1) = zeros(size(A,1),1);
Or if you want to keep your original A
B = zeros(size(A));
B(:,2) = A(:,2);
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!