In a matrix column/array, how can I turn all numbers higher than a certain value into nans?
6 ビュー (過去 30 日間)
古いコメントを表示
I have a 1 D array (column) of measured data (that I ultimately append to a matrix). I want to plot the data.
There are numbers higher than "1.0" in the array and they mean that there was a problem with a measurement. I need to turn any numbers higher than 1.0 into nans. Does anyone know how to do this? Thank you for any advice.
0 件のコメント
採用された回答
Abdolkarim Mohammadi
2020 年 9 月 2 日
編集済み: Abdolkarim Mohammadi
2020 年 9 月 2 日
The best way is to use logical indexing.
X(X>1) = NaN;
Read this page, especially Indexing with Logical Values:
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!