www.gusucode.com > mbcdesign 工具箱 matlab 源码程序 > mbcdesign/@conrange/getBoundaryPointOptions.m

    function [opts, ok] = getBoundaryPointOptions(con)
%GETBOUNDARYPOINTOPTIONS Get the options for finding boundary points
%
%  [OPTS, OK] = GETBOUNDARYPOINTOPTIONS(CON)
%
%  See also CONSTAR, CONBASE/GETBOUNDARYPOINTOPTIONS.

%  Copyright 2005 The MathWorks, Inc. and Ford Global Technologies, Inc.

% Second return argument is required to work with "xregoptmgr" code.
ok = true;

% Use an "optimisation manager" to handle the options
opts = contextimplementation( xregoptmgr, con, '', '', 'Boundary Points', @getBoundaryPointOptions );

% No further options

%------------------------------------------------------------------------------|
% EOF
%------------------------------------------------------------------------------|