Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Implementing Comb/Q-Notch filter to remove specific frequency

Status
Not open for further replies.

Maverickmax

Advanced Member level 1
Joined
Dec 6, 2004
Messages
404
Helped
8
Reputation
16
Reaction score
3
Trophy points
1,298
Activity points
3,689
Hi

I am struggling to write a C codes in order to implement Comb/Q-notch filter to remove 500Hz.

As the picture shows that the sample is being hold for few seconds while the same sample is added at the output.

Should I use simple time delay loop in the my code? Any example of this algorithm?

MM[/img]
 

Comb/Notch Filter

no loop in this algorithm, but unit delay.

while (working) {
din_delay = din;
dout = din + din_delay;
}
 

Re: Comb/Notch Filter

Is there anyone can give me example of implementing of comb filter to remove the specific frequency? Does it use one delay or more?

MM
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top