Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

chebyshev low pass filter?

I'm looking for a digital/analog chebyshev low pass filter for a windows forms project, preferably in c#, c++ or c. A pseudocode would be helpful as well.

like image 992
T o n y Avatar asked Oct 26 '25 14:10

T o n y


1 Answers

Here's a web app by Tony Fisher that computes the coefficients for digital filters (common FIR and IIR types), plots the filter magnitude and phase response, and even creates an ANSI C function template:

http://www-users.cs.york.ac.uk/~fisher/mkfilter

and also analog filter design:

http://www-users.cs.york.ac.uk/~fisher/lcfilter

like image 77
Eryk Sun Avatar answered Oct 29 '25 15:10

Eryk Sun