フィルターのクリア

how to delete NaN from a column of data

1 回表示 (過去 30 日間)
lowcalorie
lowcalorie 2012 年 5 月 8 日
コメント済み: Image Analyst 2016 年 7 月 7 日
I have a column of numbers that i called in from excel but some of my data comes up as NaN, which is fine but i need to do calculations on this data and matlab cant do calculations on NaN how can i get rid of the NaN from my data?
example
data=
45
23
NaN
78
mean(data) = NaN

採用された回答

Geoff
Geoff 2012 年 5 月 8 日
If all you want is the mean, just use nanmean:
help nanmean
There are a bunch of functions that explicitly ignore NaN
nancov
nanmax
nanmean
nanmedian
nanmin
nanstd
nansum
nanvar
  2 件のコメント
Shubham Maurya
Shubham Maurya 2016 年 7 月 7 日
try this
data(find(isnan(data)))=[];
Image Analyst
Image Analyst 2016 年 7 月 7 日
Like James showed, find() is not needed, though it still works.
data(isnan(data)) = [];

サインインしてコメントする。

その他の回答 (1 件)

James Tursa
James Tursa 2012 年 5 月 8 日
For your particular example:
mean(data(~isnan(data)))
For general nan handling, you might take a look at the FEX submissions such as this one:

カテゴリ

Help Center および File ExchangeNaNs についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by