www.gusucode.com > control 案例程序 matlab源码代码 > control/SetScaleForYAxisInHSVPlotExample.m

    %% Set Properties in HSV Plot
% Use |hsvplot| to create a Hankel singular-value plot with and customized plot
% properties.
%% 
% Create an options set for |hsvplot| that sets the |Yscale| property and
% the title font size.
P = hsvoptions;
P.YScale = 'linear'; 
P.Title.FontSize = 14;
%%
% Use the options set to generate an HSV plot. Note the linear y-axis scale
% in the plot.
h = hsvplot(rss(12),P);
%%
% |hsvplot| returns a plot handle.  You can use the plot handle to change
% proprties of the existing plot.  For example, switch to log scale and
% turn off the grid.
%%
setoptions(h,'Yscale','log','Grid','Off')