How to combine two arrays?
Afficher commentaires plus anciens
I have two arrays
x = 561x1 double
y = 561x1 double
How can i combine it into
z = 561x2 double
1 commentaire
Talha Azmat
le 7 Jan 2020
use combine function
Réponse acceptée
Plus de réponses (1)
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)
Catégories
En savoir plus sur Operators and Elementary Operations 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!