diff options
author | Chris Robinson <[email protected]> | 2012-11-18 19:02:50 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-11-18 19:02:50 -0800 |
commit | 0c030f7d9c0158ae95cd470436b85fc8db774ad2 (patch) | |
tree | 45c2aac5a5fc7bab09c0f093050cb884dfdd62f2 /utils/makehrtf.c | |
parent | 2d800e99e269a87bb938920e406f37207c3b428f (diff) |
Fix a comment describing the sinc function
Diffstat (limited to 'utils/makehrtf.c')
-rw-r--r-- | utils/makehrtf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/makehrtf.c b/utils/makehrtf.c index 592f7316..ea56ffcd 100644 --- a/utils/makehrtf.c +++ b/utils/makehrtf.c @@ -1016,7 +1016,7 @@ static void MinimumPhase (const uint n, const double * in, double * outR, double /* This is the normalized cardinal sine (sinc) function. * - * sinc(x) = { 0, x = 0 + * sinc(x) = { 1, x = 0 * { sin(pi x) / (pi x), otherwise. */ static double Sinc (const double x) { |