MATLAB: How to split 360*160*50 data into several 5*5*5 chunks

3d data set modification

I want to slipt my 360*160*50 data into several 5*5*5 chunks. Then do the calculation into each chunk. Each chunk will give me on result and need to label the result as well. The results need to be in a 72*32*10 dataset.

Best Answer

Use the reshape (link) function:
M = rand(360, 160, 50);
R = reshape(M, 5, 5, 5, []);
Rsize = size(R) % Check Result
producing:
Rsize =
5 5 5 23040