www.gusucode.com > signal 工具箱matlab源码程序 > signal/@dfilt/@calattice/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.

[ap1, ap2, beta] = dispstr(Hd.filterquantizer, Hd.Allpass1q(:), ...
    Hd.Allpass2q(:), Hd.privBeta, varargin{:});

s = char({'Allpass1.Lattice:'
          ap1
          ''
          'Allpass2.Lattice:'
          ap2
          ''
          'Beta:'
          beta
         });

% [EOF]