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

    function out=fullset(obj)
% FULLSET  Return the full list of candidate points
%
%   LIST=FULLSET(OBJ) returns the full list of points in the
%   candidate set.
%

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



% Created 30/12/2000

% do full factorial grid
out=fullset(obj.grid);

% add center points
if obj.Nc
   out(end+1:end+obj.Nc,:)=repmat(centerpoint(obj.candidateset),obj.Nc,1);
end
return