Combine 2 matrices into a single column matrix

1 view (last 30 days)
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?

Accepted Answer

Star Strider
Star Strider on 17 Nov 2021
Edited: Star Strider on 17 Nov 2021
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.
.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Tags

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!