How do I insert one array into another?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
L'O.G.
el 25 de Ag. de 2022
Respondida: Chunru
el 25 de Ag. de 2022
I have two arrays with elements of type double. I want to insert the 1st column of array 2 after the 1st column of array 1, the 2nd column of array 2 after the 2nd column of array 1, and so on. How do I do this?
0 comentarios
Respuesta aceptada
Chunru
el 25 de Ag. de 2022
a = reshape(1:12, 3, 4)
b = reshape(13:24, 3, 4)
% You stack a and b, then reshape it
a = reshape([a; b], 3, 8)
0 comentarios
Más respuestas (0)
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!