Filter löschen
Filter löschen

Designing a discrete signal with cutoff frequencies

5 Ansichten (letzte 30 Tage)
Jonathan George
Jonathan George am 26 Mär. 2022
Beantwortet: Star Strider am 26 Mär. 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.

Akzeptierte Antwort

Star Strider
Star Strider am 26 Mär. 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)
.

Weitere Antworten (0)

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by