Is it possible to plot surface plots together with a filled contour plot?

12 vues (au cours des 30 derniers jours)
I am trying to plot surface objects along with filled contour plots in the same figure. The SURFC function allows me to create a surface plot with an unfilled contour plot at the base of the XY plane.

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 10 Août 2011
There is no built-in functionality to plot a surface together with a filled contour plot. You can use the HOLD ON command to simultaneously plot a surface (using the SURF function) and a filled contour (using the CONTOURF function). Then you can get handles to the patch object comprising of the filled contour plot, and change their ‘ZData’ property to shift them to the bottom of the plot.
For example, see the attached file “surfcf.m”. To execute this function, refer to the following example:
>> [X,Y,Z] = peaks(30);
>> surfcf(X,Y,Z);
This will simultaneously plot the surface and filled contour on the same figure.

Plus de réponses (0)

Catégories

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

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by