diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-05 16:59:51 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-05 16:59:51 +0000 |
commit | e70d41b16e0cb598a0160d66e63ef4ce7e6abf92 (patch) | |
tree | 2682972d987c7bca34420107139a660eb3ea82cc /src/scalar.c | |
parent | e1fbfa44ce1fd63e7c4a03b5e07c24fcc125825b (diff) | |
download | LibXtract-e70d41b16e0cb598a0160d66e63ef4ce7e6abf92.tar.gz LibXtract-e70d41b16e0cb598a0160d66e63ef4ce7e6abf92.tar.bz2 LibXtract-e70d41b16e0cb598a0160d66e63ef4ce7e6abf92.zip |
Changed xtract_f0 to xtract_lowest_match
Diffstat (limited to 'src/scalar.c')
-rw-r--r-- | src/scalar.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/scalar.c b/src/scalar.c index c082440..1cc3128 100644 --- a/src/scalar.c +++ b/src/scalar.c @@ -23,6 +23,7 @@ #include "xtract/libxtract.h" #include "math.h" +#include <stdlib.h> int xtract_mean(float *data, int N, void *argv, float *result){ @@ -324,7 +325,7 @@ int xtract_slope(float *data, int N, void *argv, float *result){ } -int xtract_f0(float *data, int N, void *argv, float *result){ +int xtract_lowest_match(float *data, int N, void *argv, float *result){ /* int n, M = N >> 1; float guess, error, minimum_error = 1000000, f0, freq; @@ -412,4 +413,10 @@ int xtract_hps(float *data, int N, void *argv, float *result){ free(product); } - + + +int xtract_f0(float *data, int N, void *argv, float *result){ + + NOT_IMPLEMENTED; + +} |