How can we join two matrices of two dimmention
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
hey everybody i have two matrices of 476*11 i want to join them in one matrix of 952*11 . thanks in advance
0 Commenti
Risposta accettata
Mischa Kim
il 12 Mar 2014
Modificato: Mischa Kim
il 12 Mar 2014
Abdulkareem, simply use
C = [A; B];
where A and B are your 476-by-11 matrices.
A = [1 2 3; 4 5 6];
B = [9 8 7; 6 5 4];
C = [A; B]
C =
1 2 3
4 5 6
9 8 7
6 5 4
0 Commenti
Più risposte (3)
Sagar Damle
il 12 Mar 2014
For two matrices A and B; 1. for horizontal concatenation,use [A,B] or horzcat(A,B). 2. for vertical concatenation,use [A;B]. Also see help about function 'cat()'.
0 Commenti
Vedere anche
Categorie
Scopri di più su NaNs in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!