High Pass Filter example?
High Pass Filter example?
- Subject: High Pass Filter example?
- From: email@hidden
- Date: Thu, 5 Jun 2003 00:31:39 EDT
Hi,
I'm looking for a basic single pole high pass filter. Does anyone know the
high pass version of this low pass filter?
inline double LowPassFilter(double input, double inCutoff, double& ioPrev)
{
ioPrev = (input * (1.0 - inCutoff)) + (ioPrev * inCutoff);
return ioPrev;
}
thanks
Jeff
_______________________________________________
coreaudio-api mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/coreaudio-api
Do not post admin requests to the list. They will be ignored.