Finding max and min value in a contour plot

20 ビュー (過去 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 Center および File ExchangeContour Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by