How to combine two arrays?
689 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
SUSHMA MB
le 6 Mar 2017
Réponse apportée : Opeyemi Kehinde
le 17 Déc 2021
I have two arrays
x = 561x1 double
y = 561x1 double
How can i combine it into
z = 561x2 double
Réponse acceptée
Plus de réponses (1)
Opeyemi Kehinde
le 17 Déc 2021
This will combine everything vertically
ba=rand(5,1);
bc=rand(5,1);
bd=cat(1,ba,bc)
and this will combine them horizontally
ba=rand(5,1);
bc=rand(5,1);
bd=cat(2,ba,bc)
0 commentaires
Voir également
Catégories
En savoir plus sur Matrix Indexing 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!