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

filter output variables y,e,w clarification #25

Open
siddarth-siddie opened this issue May 30, 2023 · 1 comment
Open

filter output variables y,e,w clarification #25

siddarth-siddie opened this issue May 30, 2023 · 1 comment

Comments

@siddarth-siddie
Copy link

siddarth-siddie commented May 30, 2023

Hey,
I am using the RLS adaptive filtering technique for noise cancellation from the noisy desired signal with reference noise input.

f = pa.filters.FilterRLS(mu=0.9, n=n)
y, e, w = f.run(d, x)

Could you please clarify the terms y,e, and w? I understand that y is the filtered output of reference noise, e is the output error between filtered y and desired signal d and w is the weights. So, the error signal e is the noiseless desired signal we required right?

Thanks in advance :)

@matousc89
Copy link
Owner

w = adaptive parameters (weights)
e = error
y = predicted result

I guess this paper could help you (or pretty much any paper about adaptive filtering using same notation)
https://www.sciencedirect.com/science/article/pii/S1877750322002460

Wikipedia seems to use similar notation also: https://en.wikipedia.org/wiki/Adaptive_filter#:~:text=An%20adaptive%20filter%20is%20a,adaptive%20filters%20are%20digital%20filters.

Feel free to ask more concrete question if you still struggle.

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