MATLAB: How to sum multiple matrice in loop

loopMATLABmatricesmultiplesum

Hi everybody,
I would like to sum multiple matrice using a loop.
I attach my data.
So, I have a multiple 4D double structure, that contains 4x4x32x12 matrices.
I would like to sum all the matrices according the last argument to obtain 12 matrices which are the sum of the 32 matrices (in my code i = 1:12 ; j = 1:32).
I think I have to use a loop.
Is anybody could help me?
Thanks,
— AL

Best Answer

Is this what you want?
result = squeeze(sum(T3,3));
If not please clarify what the dimensions of the final result should be.