Smoothing contour plot of isotherm

5 visualizaciones (últimos 30 días)
주희 박
주희 박 el 16 de Feb. de 2022
Comentada: DGM el 17 de Feb. de 2022
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 comentario
AndresVar
AndresVar el 17 de Feb. de 2022
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.

Iniciar sesión para comentar.

Respuesta aceptada

DGM
DGM el 17 de Feb. de 2022
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 comentarios
주희 박
주희 박 el 17 de Feb. de 2022
Wow It's simple and very useful method! Thank you so much!!
DGM
DGM el 17 de Feb. de 2022
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Contour Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by