implementing a Patch function for notch filtering #443
Closed
ahmadtourei
started this conversation in
Ideas
Replies: 3 comments
|
Hey @ahmadtourei, Really good idea! ObsPy has a bandstop implementation that uses a Butterworth-type filter which We could also do a |
0 replies
|
Sounds good! I'll work on it next week and get back to you @d-chambers. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
It would be great to design a notch filter that can remove a narrow frequency band (such as power line noise at 60 Hz). As the processing will be carried out in the frequency domain and also the filter can be a pre-processing step for some data processing pipelines, we'd want to follow the behavior of
Patch.whitenso the function can be applied on a DFT patch as well to avoid multiple DFT/IDFT. scipy.signal.iirnotch can be used under the hood.All reactions