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

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

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

%#function fdfmethod.cheby1notchbw

designobj.cheby1 = 'fdfmethod.cheby1notchbw';

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

% [EOF]