How to concatenate two matrices?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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]
0 commentaires
Réponse acceptée
Wan Ji
le 21 Août 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 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!