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

    %% Remove Grid Lines 
% Create a surface plot and remove the grid lines.

% Copyright 2015 The MathWorks, Inc.

[X,Y,Z] = peaks; 
surf(X,Y,Z)
grid off