Converting to a Column Vector
Show older comments
How can I convert the 3-by-3 matrix A into the 3-by-1 matrix B in the simplest way?
A = [ 1 2 3; 4 5 6; 7 8 9 ]
B = [ 123; 456; 789 ]
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 12 Aug 2016
Edited: Azzi Abdelmalek
on 12 Aug 2016
A = [ 1 2 3; 4 5 6; 7 8 9 ]
B=char(A+'0')
1 Comment
Rightia Rollmann
on 12 Aug 2016
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!