Filter löschen
Filter löschen

How to concatenate two matrices?

2 Ansichten (letzte 30 Tage)
Ammy
Ammy am 21 Aug. 2021
Kommentiert: Ammy am 21 Aug. 2021
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]

Akzeptierte Antwort

Wan Ji
Wan Ji am 21 Aug. 2021
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 Kommentare
Wan Ji
Wan Ji am 21 Aug. 2021
A=C(1:2:end,:);
B=C(2:2:end,:);
Ammy
Ammy am 21 Aug. 2021
Thank you very much.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by