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

    function obj=cset_spacefillsobol(varargin)
%CSET_SPACEFILLSOBOL Wrapper class for space-filling Sobol sequences
%
%  OBJ=CSET_SPACEFILLSOBOL creates a candidate set which wraps
%  a Sobol sequence and sets it to be appropriate for space-filling.
%
%  See CSET_SOBOLSET for more details.

%  Copyright 2007 The MathWorks, Inc.

prnt = cset_sobolset(varargin{:});
prnt = set(prnt,'N',256);
obj.version = 1;

obj = class(obj,'cset_spacefillsobol',prnt);