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

    function tf = islinear(con)
%ISLINEAR Indicates if a constraint is linear in its input factors.
%
%  TF = ISLINEAR(CON)
%
%  Linear constraints are linear so this method returns true.
%
%  See also CONLINEAR, CONBASE/ISLINEAR.

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

tf = true;

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