Add 2d array in a 3d array
Mostrar comentarios más antiguos
I have a matrix A = rand(10,5,10) and a matrix B = rand(10,10) and i would like to concatenate then along the second axis into a matrix C of shape (10,6,10)
2 comentarios
Sindar
el 6 de Nov. de 2020
try:
C = A;
C(:,6,:) = B;
Alan De maman
el 6 de Nov. de 2020
Respuestas (0)
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!