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

    function ret = isGenerated(obj)
%ISGENERATED Check whether all cached generation is complete.
%
%   RET = ISGENERATED(OBJ) returns true if the candidateset object is
%   fully generated.  When a set is generated, they will return a set of
%   points from calls to FULLSET or PARTIALSET.  If they are not generated,
%   a call to the GENERATE method will always make them ready for use.
%
%   See also: RESET, GENERATE.

%   Copyright 2007 The MathWorks, Inc.

% Deefault behaviour is to need no generation, so always return true
ret = true;