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

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

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

%#function fmethod.cheby2hp
designobj.cheby2 = 'fmethod.cheby2hp';

if isfdtbxinstalled
    %#function fdfmethod.elliphpcutoffwas
    designobj.ellip  = 'fdfmethod.elliphpcutoffwas';
end

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

% [EOF]