showing contour values on plot

15 ビュー (過去 30 日間)
Mahmoud Abbas
Mahmoud Abbas 2022 年 4 月 14 日
コメント済み: Star Strider 2022 年 4 月 14 日
Hello, how can i show the contour values on the plot?
f = @(x1,x2) exp(-0.05*x1)*sin(x1)+exp(-0.05*x2)*cos(x2);
fcontour(f,[-10 10 -10 10])
colorbar

採用された回答

Star Strider
Star Strider 2022 年 4 月 14 日
The fcontour function does not have a 'ShowText' property, so overplot it with a normal contour plot and set 'ShowText','on' to show the levels.
f = @(x1,x2) exp(-0.05*x1).*sin(x1)+exp(-0.05*x2).*cos(x2);
figure
hfc = fcontour(f,[-10 10 -10 10]);
Xm = hfc.XData;
Ym = hfc.YData;
Zm = hfc.ZData;
hold on
contour(Xm,Ym,Zm, 'ShowText','on')
hold off
colormap(turbo)
colorbar
.
  2 件のコメント
Mahmoud Abbas
Mahmoud Abbas 2022 年 4 月 14 日
You are a superhero, thank you!
Star Strider
Star Strider 2022 年 4 月 14 日
Thank you!
As always, my pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeContour Plots についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by