Fix a comment describing the sinc function

This commit is contained in:
Chris Robinson 2012-11-18 19:02:50 -08:00
parent 2d800e99e2
commit 0c030f7d9c

View File

@ -1016,7 +1016,7 @@ static void MinimumPhase (const uint n, const double * in, double * outR, double
/* This is the normalized cardinal sine (sinc) function. /* This is the normalized cardinal sine (sinc) function.
* *
* sinc(x) = { 0, x = 0 * sinc(x) = { 1, x = 0
* { sin(pi x) / (pi x), otherwise. * { sin(pi x) / (pi x), otherwise.
*/ */
static double Sinc (const double x) { static double Sinc (const double x) {