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

    function list = OptimalDesignTypes(nf)
%OPTIMALDESIGNTYPES list of classical designs for Model-Based Calibration Toolbox software
%
% list = mbcdoe.OptimalDesignTypes;
% list = mbcdoe.OptimalDesignTypes(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.ClassicalDesignTypes

%  Copyright 2007 The MathWorks, Inc.

list = {'D-optimal'
    'V-optimal'
    'A-optimal'};
end