www.gusucode.com > graphics 案例源码程序 matlab代码 > graphics/AddImageToAxesIn3DView2Example.m

    %% Add Image to Axes in 3-D View
% Create a surface plot. Then, add an image under the surface. |imagesc|
% displays the image in the xy-plane.

Z = 10 + peaks;
surf(Z)
hold on
imagesc(Z)