MATLAB: Combine ARRAYS

array

Hi everybody.
I had arrays in the form of A= 23401×1 and B=200×1 etc…
I want to combine them so that they continue downwards.
So I would like combine A and B so that the array is 23601×1 with A ontop with B below

Best Answer

doc cat
This should work, too:
C = [A ; B];