Effacer les filtres
Effacer les filtres

Designing a discrete signal with cutoff frequencies

5 vues (au cours des 30 derniers jours)
Jonathan George
Jonathan George le 26 Mar 2022
How would I go about designing a 4th order band stop discrete filter that is designed to filter signals sampled at 10Hz and with cutoff frequencies of 2.65Hz and 3.3Hz using the FIR window approach?
Many thanks.

Réponse acceptée

Star Strider
Star Strider le 26 Mar 2022
Similarly to the previous filter in Designing a specific low-pass discrete filter in MATLAB
Fs = 10; % Sampling Frequency (Hz)
Fn = Fs/2; % Nyquist Frequency
order = 4;
Fp = [2.65 3.3]; % Passband Frequency Vector
h = fir1(order, Fp/Fn, 'bandpass');
figure
freqz(h, 1, 2^16, Fs)
The order is too low for it to actually have a bandpass characteristic. Increasing the order shows it correctly —
Fs = 10; % Sampling Frequency (Hz)
Fn = Fs/2; % Nyquist Frequency
order = 12;
Fp = [2.65 3.3]; % Passband Frequency Vector
h = fir1(order, Fp/Fn, 'bandpass');
figure
freqz(h, 1, 2^16, Fs)
.

Plus de réponses (0)

Produits


Version

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by