www.gusucode.com > signal 工具箱matlab源码程序 > signal/@filtdes/@iirpeakwfpeak/gettitlestr.m

    function str = gettitlestr(d)
%GETTITLESTR Returns the title for GENMCODE

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

% This should be private

str = sprintf('%% IIR Peaking filter designed using the %s function.', ...
    upper(designfunction(d)));
    
% [EOF]