how to create a single column matrix from two matrices in MATLAB
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi all,
I have tow matrcies A=[1,2,3,4] and B= [7,4,6]. I want to combine it in a single column matrix.
Can anyone help me in this regrad?
thanks in advance
1 commentaire
Calequela Manuel
le 21 Juin 2022
Modifié(e) : Calequela Manuel
le 21 Juin 2022
A=[1,2,3,4];
B= [7,4,6];
Resolution:
T = ([A B])'
T = ([1 2 3 4 7 4 6])'
T = 1
2
3
4
7
4
6
Réponses (1)
Voir également
Catégories
En savoir plus sur Logical 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!