How to combine two arrays?
693 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
SUSHMA MB
el 6 de Mzo. de 2017
Respondida: Opeyemi Kehinde
el 17 de Dic. de 2021
I have two arrays
x = 561x1 double
y = 561x1 double
How can i combine it into
z = 561x2 double
Respuesta aceptada
Más respuestas (1)
Opeyemi Kehinde
el 17 de Dic. de 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 comentarios
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!