www.gusucode.com > signal 工具箱matlab源码程序 > signal/@dfilt/@dtffir/dispstr.m

    function s = dispstr(Hd, varargin)
%DISPSTR Display string of coefficients.
%   DISPSTR(Hd) returns a string that can be used to display the coefficients
%   of discrete-time filter Hd.
%
%   See also DFILT.

%   Author: Thomas A. Bryan
%   Copyright 1988-2005 The MathWorks, Inc.

s = char({[getString(message('signal:dfilt:dfilt:Numerator')) ':']
    dispstr(Hd.filterquantizer, Hd.privNum(:), varargin{:})});

% [EOF]