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

    function [con, bp, ok] = findBoundaryPoints(con, opts, X)
%FINDBOUNDARYPOINTS Find the boundary points for a constraint
%
%  [CON, BP] = FINDBOUNDARYPOINTS(CON, OPTS, X)
%
%  This method needs to be overloaded for sub-classes that require boundary
%  points as part of the fitting process.
%
%  See also CONBASE, CONBASE/FINDSPECIALPOINTS, CONBASE/FITCONSTRAINT,
%    CONBASE/GETBOUNDARYPOINTOPTIONS. 

%  Copyright 2004-2005 The MathWorks, Inc.

bp = [];
ok = false;

warning(message('mbc:conbase:UndefinedMethod', upper( mfilename ), class( con )));

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