Combine 2 matrices into a single column matrix

1 次查看(过去 30 天)
I have two matrices, 5 x 1 and 6 x 1. I want to combine them into a single matrix that is 11 x 1. is there an easy way to do this?

采纳的回答

Star Strider
Star Strider 2021-11-17
编辑:Star Strider 2021-11-17
Yes.
A = randi(9,5,1)
A = 5×1
4 6 7 9 1
B = randi(9,6,1)
B = 6×1
2 4 8 3 3 1
Out = [A; B]
Out = 11×1
4 6 7 9 1 2 4 8 3 3
EDIT — See the documentation section on MATLAB Operators and Special Characters to understand how that works, and others of interest.
.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by