You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 :)
The text was updated successfully, but these errors were encountered:
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 :)
The text was updated successfully, but these errors were encountered: