How to concatenate two matrices?

I have two matrices
e.g.,
A=[1 2;3 4]
B=[5 6;7 8]
how to concatenate A and B such that
C=[1 2;5 6;3 4;7 8]

 Accepted Answer

A=[1 2;3 4];
B=[5 6;7 8];
C1 = [A,B]';
C = reshape(C1, size(A,2),numel(C1)/size(A,2))'
Then
C =
1 2
5 6
3 4
7 8

4 Comments

Thank you very much.
@Wan Ji Can I go back from C to A and B, I meam if I have C how can I get back A and B
A=C(1:2:end,:);
B=C(2:2:end,:);
Thank you very much.

Sign in to comment.

More Answers (0)

Asked:

on 21 Aug 2021

Commented:

on 21 Aug 2021

Community Treasure Hunt

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

Start Hunting!