Effacer les filtres
Effacer les filtres

empty plotting using contourf

7 vues (au cours des 30 derniers jours)
Yu Li
Yu Li le 17 Déc 2017
Modifié(e) : Yu Li le 22 Nov 2018
Hi: I have a data set of X,Y,Z, which corresponds to x,y axis, and paremeter need to be plotted
but when I use [xc,yc]=contourf(X,Y,Z),
the plotting is blank, could anyone help me about this
Thanks!
Li

Réponse acceptée

Star Strider
Star Strider le 17 Déc 2017
Your data throws this error when I try to plot it with contourf:
Warning: Contour not rendered for constant ZData
> In contourf (line 60)
You will have to solve that problem.
Exploring this, the mean (using nanmean) of ‘Z’ is 6, and standard deviation (using nanstd) is 0.
This is the best you can hope for:
figure(1)
contourf(X, Y, Z, [6 6])
grid on
  2 commentaires
Yu Li
Yu Li le 17 Déc 2017
thank you so much!
Star Strider
Star Strider le 17 Déc 2017
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by