DSPRelated.com
Free Books

Matlab for Passive Reflectance Synthesis Method 2

... as in Method 1 for poles ...

% Construct a resonator as a sum of arbitrary modes
% with unit residues, adding a near-zero at dc.

B = zeros(1,2*nsec+1);
impulse = [1,zeros(1,2*nsec)];
for i=1:nsec,
    % filter() does polynomial division here:
    B = B + filter(A,denoms(i,:),impulse);
end;

% add a near-zero at dc
B = filter([1 -0.995],1,B);

... as in Method 1 for display ...


Next Section:
Matrix Bridge Impedance
Previous Section:
Matlab for Passive Reflectance Synthesis Method 1