Combining 3 3D matrices
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Minh Phuong Truong
el 7 de Feb. de 2022
Respondida: Rik
el 7 de Feb. de 2022
I have 3 3D matrices, which size are 313x409x31, 313x409x28 and 313x409x30. I would like to combine those 3 3D matrices into one 313x409x89. Pls help me.
0 comentarios
Respuesta aceptada
Rik
el 7 de Feb. de 2022
Use cat:
A=rand(313,409,31);
B=rand(313,409,28);
C=rand(313,409,30);
total=cat(3,A,B,C);
size(total)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Lighting, Transparency, and Shading 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!