Getting a mean of only the numbers

2 views (last 30 days)
Evelyn
Evelyn on 9 Oct 2014
Commented: Evelyn on 9 Oct 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?

Accepted Answer

Mischa Kim
Mischa Kim on 9 Oct 2014
Evelyn, use
mean(data(~isnan(data)))

More Answers (1)

Thorsten
Thorsten on 9 Oct 2014
Use nanmean
  1 Comment
Mischa Kim
Mischa Kim on 9 Oct 2014
That's another option. You need to have access to the Statistics Toolbox though.

Sign in to comment.

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!