how can I use mean for cell arrays within cell
Mostrar comentarios más antiguos
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,
Respuestas (1)
Bhaskar R
el 25 de Feb. de 2020
result = cellfun(@(x)mean(x, 'omitnan'), [T_mon{:}])
Categorías
Más información sobre Multidimensional Arrays en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!