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

    function in = isInsideNoMemory(c, X)
%ISINSIDENOMEMORY Check that points without remembering their state
%
%  IN = ISINSIDENOMEMORY(C, X)
%
%  The points, X, should be natural units.
%
%  No state information about which points are inside is stored with this
%  method. Use ISINSIDE to store that information.
%
%  See also DES_CONSTRAINTS, DES_CONSTRAINTS/ISINSIDE.

%  Copyright 2005 The MathWorks, Inc.

[junk, in] = isInside( c, X, 0, 0 );

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