Using mat2cell
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sebastian Daneli
el 23 de En. de 2022
Comentada: Sebastian Daneli
el 23 de En. de 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 comentarios
Respuesta aceptada
Matt J
el 23 de En. de 2022
You can use mat2tiles from,
Example:
A=rand(2840,256);
Acell=mat2tiles(A,[142,256])
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!