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

    function c = not( c )
%NOT Logical NOT of a constraint (inverse of a constraint)
%
%  C = NOT(C) is the inverse of the constraint C, i.e., a point X is in
%  NOT(C) if and only if it is outside of C.
%  
%  See also CONBASE/AND, CONBASE/OR, CONBASE/XOR, CONBOOLEAN.

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


c = conboolean( 'Not', c );

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