removing matrix element based on quality flag
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Joseph
le 1 Juin 2015
Réponse apportée : Image Analyst
le 1 Juin 2015
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 commentaires
Réponse acceptée
Image Analyst
le 1 Juin 2015
Try this, using logical indexing:
densityMatrix(qualityMatrix >= 2) = nan;
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur NetCDF dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!