Getting a mean of only the numbers

5 Ansichten (letzte 30 Tage)
Evelyn
Evelyn am 9 Okt. 2014
Kommentiert: Evelyn am 9 Okt. 2014
I have a dataset and I want the mean value of the numbers. There are a lot of NaN-values in there and I want to ignore those (the code
mean(data)
now gives 'NaN' as answer) How do I do this?

Akzeptierte Antwort

Mischa Kim
Mischa Kim am 9 Okt. 2014
Evelyn, use
mean(data(~isnan(data)))

Weitere Antworten (1)

Thorsten
Thorsten am 9 Okt. 2014
Use nanmean
  1 Kommentar
Mischa Kim
Mischa Kim am 9 Okt. 2014
That's another option. You need to have access to the Statistics Toolbox though.

Melden Sie sich an, um zu kommentieren.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by