Info

This question is closed. Reopen it to edit or answer.

How can i take 3 column matrices and combine them into 1?

1 view (last 30 days)
I have 3 matrices, A, B, C, and they all have 1 column, several hundred rows. I need to take B, add its column to the bottom of A, then take C and add it to the bottom of B, so i have one large 1 column matrix, like this:
A
B
C
Any help? Thanks!

Answers (1)

Image Analyst
Image Analyst on 18 Oct 2014
out = [A; B; C];

Community Treasure Hunt

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

Start Hunting!