필터 지우기
필터 지우기

Finding max and min value in a contour plot

조회 수: 4 (최근 30일)
Huichen Zhang
Huichen Zhang 2016년 10월 16일
답변: Image Analyst 2016년 10월 16일
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!

답변 (1개)

Image Analyst
Image Analyst 2016년 10월 16일
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 ?

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by