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

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

%  Copyright 2007 The MathWorks, Inc.

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

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