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

    function loadreferencecoefficients(this, s)
%LOADREFERENCECOEFFICIENTS   Load the reference coefficients.

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

if s.version.number < 2
    set(this, 'Numerator', s.Numerator);
else
    set(this, 'Numerator', s.refnum);
end

% [EOF]