Re: Coefficients filter 1st order



Hello,

This is the closest I could get.

Regards
Bharat Pathak

Arithos Designs
www.Arithos.com


clear all;
close all;

Fs = 48000;
beta = (-15:2:15)/64;
figure;
clf; hold on;

for i = 1 : length(beta)
bta = beta(i);
[hz,f] = freqz(1-bta,[1 -bta], 1024, Fs);
plot(f, 20*log10(abs(hz)));
end


.



Relevant Pages