Borrar filtros
Borrar filtros

Finding max and min value in a contour plot

4 visualizaciones (últimos 30 días)
Huichen Zhang
Huichen Zhang el 16 de Oct. de 2016
Respondida: Image Analyst el 16 de Oct. de 2016
Basically I am doing a contour plot for a 2D matrix. I want to find the exact value of the max and min value of the matrix. is it anyway to do it on contour plot directly? Thank you!

Respuestas (1)

Image Analyst
Image Analyst el 16 de Oct. de 2016
Why not just get it from the matrix directly:
minIntensityValue = min(matrix2D(:));
maxIntensityValue = max(matrix2D(:));
Or did you mean the min and max x and y of the contour lines ?

Categorías

Más información sobre Contour Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by