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

    %% Display Box Outline Around Axes
% Plot a surface and display the box outline around the axes.

% Copyright 2015 The MathWorks, Inc.


[X,Y,Z] = peaks;
surf(X,Y,Z)
box on

%%
% Turn off the display of the box outline.
box off