Easy Bandpass Filter

Simplified band-pass filtering without external toolboxes.
2K Downloads
Aktualisiert 14. Jul 2016

Lizenz anzeigen

It performs band-pass filtering of a time series with the rectangle window in frequency domain, "without external toolboxes". An example code is given as follows to filter a time series in the pass band of 200~300 Hz:
Fs = 1000;
t = linspace(0,1,Fs);
x = cos(2*pi*100*t)+0.5*randn(size(t));
y = bpfilt(x,200,300,1000);

Zitieren als

Wonsang You (2026). Easy Bandpass Filter (https://de.mathworks.com/matlabcentral/fileexchange/58219-easy-bandpass-filter), MATLAB Central File Exchange. Abgerufen.

Kompatibilität der MATLAB-Version
Erstellt mit R2010a
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Version Veröffentlicht Versionshinweise
1.0.0.0

An example code was added in description.