to form a single 3 D matrix using three different matrices
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
How can we form a 3D matrix using 3 different matrices. for example i have three (256x4) matrices and I have to form a single 3 Dimensional matrix using these matrices
0 comentarios
Respuesta aceptada
Matt Fig
el 26 de Mzo. de 2011
If your matrices are named A, B and C, then:
D = cat(3,A,B,C);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices 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!