필터 지우기
필터 지우기

How to exclude empty values from an array during statitical calculations?

조회 수: 8 (최근 30일)
I have an array build of numbers and empty values NaN and I want to
calculate statistical quantities such as median, mean, etc... but not
including the NaN in the calculation.
For example, the median of the following array
NaN
NaN
1.14353916977288
1.13195167986180
NaN
NaN
1.27935109630269
NaN
1.15339038040937
NaN
equals NaN because most of the array elements are NaN. But my
intention was to calculate the median ONLY of the elements with
values (in this particular case, the median of only 4 elements).
I wonder if someone could tell me how to exclude NaN from the
calculation without need to change the Matrix.
Thank you
Emerson

채택된 답변

Oleg Komarov
Oleg Komarov 2011년 8월 28일
Look at the function isnan.
A = [NaN; NaN; 1.14353917; 1.13195168; NaN; NaN; 1.279351096; NaN; 1.15339038; NaN]
median(A(~isnan(A)))
Also, if you have the statistics toolbox look at nanmedian and similar.
  댓글 수: 1
Jon
Jon 2018년 10월 23일
An alternative is to use the optional nanflag argument to median, as indicated in the documentation for median "M = median(___,nanflag) optionally specifies whether to include or omit NaN values in the median calculation for any of the previous syntaxes. For example, median(A,'omitnan') ignores all NaN values in A."

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by