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

    function tf = islinear(ignore_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 CONCONVEXHULL, CONBASE/ISLINEAR.

% Copyright 2005 The MathWorks, Inc.

tf = true;

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