www.gusucode.com > signal 工具箱matlab源码程序 > signal/@dfilt/@abstractsos/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, 'sosMatrix', s.SOSMatrix, ...
        'ScaleValues', s.ScaleValues);
else
    set(this, 'sosMatrix', s.refsosMatrix, ...
        'ScaleValues', s.refScaleValues);
end

% [EOF]