removing matrix element based on quality flag
1 回表示 (過去 30 日間)
古いコメントを表示
i have a Netcdf file which includes 150*32024 density matrix and also 150*32024 quality flag matrix (elements of quality flag consist of numbers 1,2,3, ...), that shows the quality of density matrix elements. i want to exclude(replace it by NaN) elements of density matrix related to the quality flag elements equal or greater than 2, how can i do this? Thanks
0 件のコメント
採用された回答
Image Analyst
2015 年 6 月 1 日
Try this, using logical indexing:
densityMatrix(qualityMatrix >= 2) = nan;
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で NetCDF についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!