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

    function tf = canDesign(con)
%CANDESIGN Indicate if a constraint support user set-up (design)
%
%  TF = CANDESIGN(CON)
%
%  By default this method returns false. Sub-classes that support user set-up
%  (design) of the constraint should overload this method to return truw. They
%  should also over load the method GUI_DESIGNCONSTRAINT to enable the user to
%  set-up (design) the constraint.
%
%  See also CONBASE, CONBASE/GUI_DESIGNCONSTRAINT.

%  Copyright 2004-2005 The MathWorks, Inc.

tf = false;

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