how create an matrix without NaN data?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi users Matlab...
I have an matrix as dimensions 180x89x1919> This my matrix have some data NaN.
This is possible?
5 件のコメント
採用された回答
José-Luis
2014 年 7 月 15 日
You would need to replace the NaN's with something:
your_mat(your_mat ~= your_mat) = some_value;
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Preprocessing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!