www.gusucode.com > mbc 工具箱 matlab 源码程序 > mbc/+mbcdoe/ClassicalDesignTypes.m

    function list = ClassicalDesignTypes(nf)
%CLASSICALDESIGNTYPES list of classical designs for Model-Based Calibration Toolbox software
%
% list = mbcdoe.ClassicalDesignTypes;
% list = mbcdoe.ClassicalDesignTypes(NumberOfInputs);
%   If the NumberOfInputs for the design is specified then the list is
%   restricted to the designs for that NumberOfInputs.
%
% See also mbcdoe.SpaceFillingDesignTypes, mbcdoe.OptimalDesignTypes

%  Copyright 2007 The MathWorks, Inc.

csI = csetinterface;
csI = set(csI,'typefilter',2);
if nargin
    csI = set(csI,'nffilter',nf);
end
list = get(csI,'FullNames');
end