Combining two matrices into one
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I need to combine the two matrices a and b to yield c.
a = [1;0] and b = [0;1]
and for c I need to matrix to look like this c = [1,0;0,1] not [1;1]
I was using c = a + b, is there a way I can combine the matrices without adding the numbers together?
Thank you for your time.
Réponse acceptée
Andrei Bobrov
le 17 Sep 2013
Modifié(e) : Andrei Bobrov
le 17 Sep 2013
c = [a,b] % EDIT
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!