フィルターのクリア

Smoothing contour plot of isotherm

4 ビュー (過去 30 日間)
주희 박
주희 박 2022 年 2 月 16 日
コメント済み: DGM 2022 年 2 月 17 日
Hi i have an argo data and I'm trying to make isotherm line. I choose 1999~2004 winter data and interpolation 1m.
And I want to more smooth isotherm line. Additionally, I'm so beginner of matlab. Thank you for considering.
  • And Zi has NaN values, I guess this is cause. Why my zi has NaN......
  1 件のコメント
AndresVar
AndresVar 2022 年 2 月 17 日
I have question about removing nan from b. The shape of b is 2D right? Otherwise it could have large discontinuity.
Instead of interp1 you could try the Damien Garcia's inpaint (for 2D b):
Or
I am not familiar for why griddata gives you nan, could it be because b is not smooth and has very large noise.

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

採用された回答

DGM
DGM 2022 年 2 月 17 日
I don't have your data, and your code is a picture, so I can't do anything with it.
That said, it looks like the problem is merely the size of the ZData.
Consider the example:
Z = peaks(10); % a very small array
contourf(Z,10);
figure
Z = peaks(100); % a larger array
contourf(Z,10);
You should be able to change this resolution by reducing the stepsize when you generate the Xp and Yp vectors.
  2 件のコメント
주희 박
주희 박 2022 年 2 月 17 日
Wow It's simple and very useful method! Thank you so much!!
DGM
DGM 2022 年 2 月 17 日
If you find that the answer satisfies your question to your satisfaction, you can click Accept. That way the question will be moved to the "answered" queue, where it may be more valuable to the next person searching for help with a similar problem.

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

その他の回答 (0 件)

カテゴリ

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