Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

High Pass Filters #10

Open
anwaypimpalkar opened this issue Dec 1, 2023 · 1 comment
Open

High Pass Filters #10

anwaypimpalkar opened this issue Dec 1, 2023 · 1 comment

Comments

@anwaypimpalkar
Copy link

Hi, I am trying to implement a bandpass filter, equivalent to a Python script of:

data = np.array(readings).astype(np.int64)
b, a = ssig.butter(4, [20, 200], btype="bandpass", fs=fs)
filtered_data = ssig.filtfilt(b, a, data.flatten())

Currently, I'm looking into the Butterworth filter included in this library, but can't find a way to implement any kind of high-pass to daisy-chain it, maybe. Could someone help me understand my options? Thanks.

@matlen
Copy link

matlen commented Nov 5, 2024

Hi, I think this is a duplicate to another issue, where I just posted this comment. https://github.com/tttapa/Arduino-Filters/issues/7#issuecomment-2458253732

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants