Using mat2cell
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sebastian Daneli
le 23 Jan 2022
Commenté : Sebastian Daneli
le 23 Jan 2022
This is the third time that I'm forced to write a question about mat2cell since the explanation Matlab gives about said command offers no insight. I have a 2840x256, and I would like create 20 cells, each of 142*256. Is there any alternative to mat2cell, since I cannot understand how this command work.
0 commentaires
Réponse acceptée
Matt J
le 23 Jan 2022
You can use mat2tiles from,
Example:
A=rand(2840,256);
Acell=mat2tiles(A,[142,256])
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Data Type Conversion 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!