How to split a 3D matrix into multiple 2D matrices
41 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Chao Zhang
le 6 Juin 2021
Commenté : Chao Zhang
le 6 Juin 2021
Now I have a 36x9xN three-dimensional matrix, N is a variable. How to split this three-dimensional matrix into N 36x9 two-dimensional matrices? (for example, N=3)
0 commentaires
Réponse acceptée
Manas Minnoor
le 6 Juin 2021
Hi Chao,
Please refer to the following links which explain in detail how to use cell arrays to accomplish this.
However, just indexing into the 3D matrix will be much easier than creating multiple 2D matrices. Only if it is required should you create the N 2D matrices.
You may use the mat2cell function, whose documentation is listed below:
Hope this helps.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!