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

    function quantizecoeffs(this)
%QUANTIZECOEFFS   

%   Author(s): R. Losada
%   Copyright 2005 The MathWorks, Inc.

if isempty(this.refallpasscoeffs),
    return;
end

% Quantize the coefficients
for k = 1:length(this.refallpasscoeffs),
    this.privallpasscoeffs{k} = quantizecoeffs(this.filterquantizer,this.refallpasscoeffs{k});
end


% [EOF]