www.gusucode.com > robust 案例源码程序 matlab代码 > robust/OoptionsForRobustnessMarginCalculationExample.m

    %% Options for Robustness Margin Calculation
% Create an options set for a |robstab| or |robgain| calculation that
% displays the progress of the underlying |mussv| calculation. Also, turn
% on the element-by-element sensitivity calculation.
%%
opts = robOptions('Display','on','Sensitivity','on');
%%
% Alternatively, create a default option set, and use dot notation to set
% the values of particular options.
opts = robOptions;
opts.Display = 'on';
opts.Sensitivity = 'on';
%%
% Use |opts| as an input argument to |robstab| or |robgain|.