Cross test priprava
[mirrors/Programs.git] / c / goertzel / goertzel.c
index 19bfdf56eec479d9e372c6f1d3067241b0384fa2..85637ae43652097beb365abc5f943cdc8dc8a904 100644 (file)
@@ -29,10 +29,11 @@ float goertzel_mag(int numSamples,float TARGET_FREQUENCY,int SAMPLING_RATE, floa
 
     // calculate the real and imaginary results
     // scaling appropriately
-    real = (q2 - q1 * cosine) / scalingFactor;
+    real = (q1 * cosine - q2) / scalingFactor;
     imag = (q1 * sine) / scalingFactor;
 
     magnitude = sqrtf(real*real + imag*imag);
+    //phase = atan(imag/real)
     return magnitude;
 }
 
This page took 0.123583 seconds and 4 git commands to generate.