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

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

%  Copyright 2000-2005 The MathWorks, Inc.

tf = true;

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