putting several matrices as one
Afficher commentaires plus anciens
i have got one matrix with 2 columns and another with 5. i want to put them togehter as one matrix with 7 columns. overall the rows are similar in all of them
Réponse acceptée
Plus de réponses (1)
Cedric
le 10 Oct 2017
A = randi( 10, 3, 2 )
B = randi( 10, 3, 5 )
C = [A, B]
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!