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

    function [con, sp] = findSpecialPoints(con, opts, X)
%FINDSPECIALPOINTS Find the special points for a constraint
%
%  [CON, SP] = FINDSPECIALPOINTS(CON, OPTS, X)
%
%  This method needs to be overloaded for sub-classes that require special
%  points as part of the fitting process.
%
%  See also CONBASE, CONBASE/FINDBOUNDARYPOINTS, CONBASE/FITCONSTRAINT,
%    CONBASE/GETSPECIALPOINTOPTIONS. 

%  Copyright 2004-2005 The MathWorks, Inc.

sp = [];

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

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