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

    function disp(this)
%DISP Object display.
  
%   Author: V. Pellissier
%   Copyright 1988-2005 The MathWorks, Inc.

if length(this) > 1
    vectordisp(this);
    return;
end

fn = fieldnames(this);
N = length(fn);
% Reorder the fields. NumSamplesProcessed, PersistentMemory and States in
% the end.
if N>7, N=7; end

nidx = [3, 5:N, 1];
if this.PersistentMemory,
    % display states
    nidx = [nidx, 4];
end
fn = fn(nidx);

siguddutils('dispstr', this, fn, 23);
disp(this.filterquantizer, 23)

% [EOF]