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

20 views (last 30 days)
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.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 10 Aug 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.

More Answers (0)

Categories

Find more on Contour Plots in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!