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

    function tf = islinear(con)
%ISLINEAR Indicates if a constraint is linear in its input factors.
%
%  TF = ISLINEAR(CON)
%
%  By default, constraints are not linear. Sub-classes that are linear should
%  overload this method to return true and should also overload the method
%  GETLINEARFORM.
%
%  See also CONBASE, CONBASE/GETLINEARFORM.

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

tf = false;

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