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

    function [delta,q,maxiter]=getstop(rsd)
% DES_RESPSURF/GETSTOP   Get the current stop conditions
%   [DELTA, Q, MAX]=GETSTOP(D) returns the stopping conditions
%   from the response surface design object D.  See also SETSTOP.

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



% Created 3/11/99

delta=rsd.delta;
q=rsd.q;
maxiter=rsd.maxiter;

return