www.gusucode.com > signal 工具箱matlab源码程序 > signal/+fspecs/@bppassfstop/getdesignobj.m

    function designobj = getdesignobj(this, str)
%GETDESIGNOBJ   Get the designobj.

%   Author(s): J. Schickler
%   Copyright 1988-2005 The MathWorks, Inc.

if isfdtbxinstalled
    
    %#function fmethod.ellipbpfstop
    designobj.ellip = 'fmethod.ellipbpfstop';
else
    designobj = [];
end

if nargin > 1
    designobj = designobj.(str);
end

% [EOF]