how can I use mean for cell arrays within cell

3 Ansichten (letzte 30 Tage)
Farshid Daryabor
Farshid Daryabor am 25 Feb. 2020
Kommentiert: Farshid Daryabor am 26 Feb. 2020
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,

Antworten (1)

Bhaskar R
Bhaskar R am 25 Feb. 2020
result = cellfun(@(x)mean(x, 'omitnan'), [T_mon{:}])
  2 Kommentare
Farshid Daryabor
Farshid Daryabor am 25 Feb. 2020
Bhaskar, thanks for your comment, but I want to keep the order of the temperature values ​​with respect to the depth decrease as in the original. Could you please leave me your idea. Thanks
Farshid Daryabor
Farshid Daryabor am 26 Feb. 2020
The following comment is what I expected to be.
result = cellfun(@(x) nanmean(x,2), T_mon,'UniformOutput',false);
Thanks

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Verification, Validation, and Test finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by