MATLAB: Applying functions to each cell in a cell array

cell array

Good afternoon,
I have a 60 by 1 cell array that stores matrices of different sizes (all numeric). I want to perform certain functions (mean, diff, hypot, convhull…etc) on these matrices from the 1st element of the cell array, to the 60th element.
Is there a way I can do that?
Thank you.

Best Answer

cellfun does exactly this.
Related Question