aboutsummaryrefslogtreecommitdiff
path: root/src/scalar.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scalar.c')
-rw-r--r--src/scalar.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/scalar.c b/src/scalar.c
index 4a2b672..d2bc317 100644
--- a/src/scalar.c
+++ b/src/scalar.c
@@ -434,6 +434,8 @@ int xtract_spread(const float *data, const int N, const void *argv, float *resul
den += data[n];
}
+ /* FIX: spectral spread is mathematically equivalent to spectral variance --
+ * here we are computing the spectral standard deviation */
*result = sqrtf(num / den);
return XTRACT_SUCCESS;