How to split a 3d matrix into sub-3d matrices?
이전 댓글 표시
How can I split e.g. a 100x100x100 matrix into non-overlapping (neighbouring) smaller matrices 10x10x10? or how to use mat2cell for this problem?
채택된 답변
추가 답변 (1개)
>> C = mat2tiles( rand(100,100,100), [10,10,10]);
>> whos C
Name Size Kilobytes Class Attributes
C 10x10x10 7922 cell
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!