creating a matrix using integers and other matrices
Afficher commentaires plus anciens
so let's say that I have two 1x3 matrices, a & b, and I want to create another matrix, c, where c is [1,2,a;3,4,b], such that c is a 2x5 matrix, how can I do that?
Réponses (1)
James Tursa
le 17 Sep 2018
Modifié(e) : James Tursa
le 17 Sep 2018
Exactly what you have already written:
c = [1,2,a;3,4,b];
What am I missing?
1 commentaire
Alexandria Ragsdale
le 18 Sep 2018
Catégories
En savoir plus sur Logical 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!