www.gusucode.com > signal 工具箱matlab源码程序 > signal/+fdesign/@rsrc/getdefaultmethod.m

    function defaultmethod = getdefaultmethod(this)
%GETDEFAULTMETHOD   Get the defaultmethod.

%   Copyright 2005 The MathWorks, Inc.

if strcmpi(this.Response,'nyquist'),
    defaultmethod = 'kaiserwin';
else
    defaultmethod = 'equiripple';
end

% [EOF]