Converting to a Column Vector

1 次查看(过去 30 天)
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 ]

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2016-8-12
A = [ 1 2 3; 4 5 6; 7 8 9 ]
A*[100;10;1]

更多回答(1 个)

Azzi Abdelmalek
Azzi Abdelmalek 2016-8-12
编辑:Azzi Abdelmalek 2016-8-12
A = [ 1 2 3; 4 5 6; 7 8 9 ]
B=char(A+'0')

类别

Help CenterFile Exchange 中查找有关 Data Types 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by