How to exclude some value from raster matrix
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Karolina
el 16 de Jul. de 2015
Comentada: Karolina
el 16 de Jul. de 2015
I have a raster matrix with float values. I would like to find the minimum, median, mean, and the maximum values of my data, but when I use minA=min(A) I am receiving -1.797693134862316e+308 what represent the pixels with no data. How to exclude this value from my evaluation?
0 comentarios
Respuesta aceptada
Image Analyst
el 16 de Jul. de 2015
Reassign bogus values to something else, like 0 or infinity or nan. Make sure it's some value that won't also mess up your max calculation:
A(A<0) = 0;
minA = min(A(:));
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!