how can I use mean for cell arrays within cell
Show older comments
Dear users,
I want to calculate the annual average of the attached file from the data in the cell array, regardless of the NaNs values.
Thanks in advance,
Answers (1)
Bhaskar R
on 25 Feb 2020
result = cellfun(@(x)mean(x, 'omitnan'), [T_mon{:}])
Categories
Find more on Multidimensional Arrays in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!