www.gusucode.com > sloptim工具箱matlab源码程序 > sloptim/sloptim/@ResponseOptimizer/optimset.m

    %OPTIMSET  Set optimization options for response optimization project.
%
%   OPTIMSET will be removed in a future release. Use the
%   sdo.OptimizeOptions command and new Simulink Design Optimization
%   command line interface instead.
%
%   OPTIMSET(PROJ,'SETTING1',VALUE1,'SETTING2',VALUE2,...) modifies the
%   optimization settings within the response optimization project, PROJ.
%   The value of the optimization setting, SETTING1, is set to VALUE1,
%   SETTING2 is set to VALUE2, etc.
%
%   For a list of all possible settings and the values they can take, see
%   the documentation for the MATLAB function OPTIMSET.
%
%   Example:
%     proj = newsro('srotut1','Kint');
%     opt_settings = optimget(proj)
%     optimset(proj,'MaxIter',150)
%
%   See also ResponseOptimizer/optimget, ResponseOptimizer/simget,
%   ResponseOptimizer/simset

%   Copyright 1986-2011 The MathWorks, Inc.