removing matrix element based on quality flag

조회 수: 1 (최근 30일)
Joseph
Joseph 2015년 6월 1일
답변: Image Analyst 2015년 6월 1일
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

채택된 답변

Image Analyst
Image Analyst 2015년 6월 1일
Try this, using logical indexing:
densityMatrix(qualityMatrix >= 2) = nan;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 NetCDF에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by