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

    function[p,aug,del]=getoptimal(rsd);
% DES_RESPSURF/GETOPTIMAL   Get optimisation settings
%   [P, AUG, DEL]=GETOPTIMAL(D) returns P, the number of lines
%   added during each iteration, AUG, the augmentation method used
%   and DEL, the deletion method used.

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



% Created 5/11/99

p=rsd.p;
aug=rsd.augmentmethod;
del=rsd.deletemethod;

return