aboutsummaryrefslogtreecommitdiff
path: root/src/libxtract.c
diff options
context:
space:
mode:
authorJamie Bullock <jamie@postlude.co.uk>2011-03-30 10:51:39 +0000
committerJamie Bullock <jamie@postlude.co.uk>2011-03-30 10:51:39 +0000
commitd88ff54ee9be978bbdb44cedacb9b3df598b1017 (patch)
treecf80ee4d0959024fc598aba8741e1b592f7e6147 /src/libxtract.c
parentd43418e0293c2f1f9954e193a9dcc5b82f5ce0c3 (diff)
downloadLibXtract-d88ff54ee9be978bbdb44cedacb9b3df598b1017.tar.gz
LibXtract-d88ff54ee9be978bbdb44cedacb9b3df598b1017.tar.bz2
LibXtract-d88ff54ee9be978bbdb44cedacb9b3df598b1017.zip
- reimplemented xtract_spectral_variance() xtract_spectral_skewness() and xtract_spectral_kurtosis() using correct maths
- removed xtract_spectral_average_deviation()
Diffstat (limited to 'src/libxtract.c')
-rw-r--r--src/libxtract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libxtract.c b/src/libxtract.c
index 0215add..80a710e 100644
--- a/src/libxtract.c
+++ b/src/libxtract.c
@@ -27,7 +27,7 @@ int(*xtract[])(const float *, const int, const void *, float *) = {
xtract_mean,
xtract_variance,
xtract_standard_deviation,
- xtract_average_deviation,
+ /* xtract_average_deviation, */
xtract_skewness,
xtract_kurtosis,
xtract_spectral_mean,