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

    function out=get(obj,param)
% GET Get candidate set parameters
%
%   DATA=GET(OBJ,PARAM)
%
%   PARAM may be one of:
%
%       Runs

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





switch lower(param)
case 'runs'
   out=obj.Nr;
case 'limits'
   out=num2cell(limits(obj.candidateset),2);
end
return