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

조회 수: 12 (최근 30일)
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.

채택된 답변

MathWorks Support Team
MathWorks Support Team 2011년 8월 10일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by