MATLAB: Create matrix of maximum values from cell array

maximumvalues

If I have a 1×73 cell array consisting of 1×60 doubles, FR, how can I create a 1×73 matrix consisting of the maximum values of each cell in FR?

Best Answer

cellfun(@max,FR)