フィルターのクリア

How to include zero contour

11 ビュー (過去 30 日間)
University
University 2023 年 10 月 9 日
コメント済み: University 2023 年 10 月 11 日
Hi,
In the .m file attached, I have a plot of a contour.
The plot for the contour is on line 111. Please how can I include the contour at imag(taumin)=0.

採用された回答

Walter Roberson
Walter Roberson 2023 年 10 月 10 日
taumin is not complex, so imag(taumin) is zero everywhere. There is no contour to create.
You initialize
taumin=ones(nu,nxi);
which is not complex.
You set
taumin(i,j)=min(tausolR);
where
tausolR=imag(tausol_found);
You extract the imaginary component from tausol_found so the result is a strictly real number, and real numbers always have an all-zero imaginary component.
If the task is to include 0 in the level list then use
LL = union(0, min(min(taumin)):10000:max(max(taumin)));
contourf(U,Xi,taumin,LL);
Beware though, that min(min(taumin)) is -4.32538271227367e-07 and max(max(taumin)) is 1, so min(min(taumin)):10000:max(max(taumin)) is -4.32538271227367e-07:10000:1 which is just -4.32538271227367e-07
  9 件のコメント
Walter Roberson
Walter Roberson 2023 年 10 月 11 日
N=[0:0.1:1];
map = [0.95*(1-N') 0.95*(1-N') N'];
fig = openfig('cont1.fig');
fig.Visible = true;
ax = fig.Children(2);
C = ax.Children;
X = C.XData;
Y = C.YData;
Z = C.ZData;
figure();
surf(X, Y, Z); view(3)
colormap(map); colorbar;
That gives me a much better understanding of the data than the contour plot does. The contour plot gives no feeling for the sharp trenches.
University
University 2023 年 10 月 11 日
Okay, thank you so much for your help. I get what you mean.

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

その他の回答 (1 件)

Torsten
Torsten 2023 年 10 月 9 日
You want to plot imag(taumin(U,xi)) = 0.
Thus use fimplicit:
  3 件のコメント
Torsten
Torsten 2023 年 10 月 10 日
編集済み: Torsten 2023 年 10 月 10 日
But in principle, you can compute "taumin" given U and xi ? This would define a function.
Maybe this method is easier to implement:
University
University 2023 年 10 月 10 日
Okay Torsten. Thank you for your repsonse. I will try it.

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

カテゴリ

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

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by