Dealing with NaN Values
5 ビュー (過去 30 日間)
古いコメントを表示
Hi everybody,
i need help because i can't understand why my code's output is a NaN vector.
I have a matrix of data (135000x8) with no NaN elements, i checked by
find (data == NaN)
and the results was an empy matrix.
But the output of
mean (data, 1)
is a vector (1x8) of NaN values.
Someone can help me in understanding why ??
p.s. i run the same code for various different data and for them was ok.
Thank you in advance !
0 件のコメント
回答 (1 件)
Alan Stevens
2021 年 9 月 30 日
Try
find(isnan(data))
2 件のコメント
Alan Stevens
2021 年 9 月 30 日
Depends what you want to do with the data matrix! You might possibly replace them with zeros, say, or some other number that won't affect what you are going to do with data.
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!