diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2013-01-09 12:45:29 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2013-01-09 12:45:29 +0000 |
commit | c277634b13117e721e43f34a09cafb93c725fa3f (patch) | |
tree | b4f57d1cf0c430eb700df37b074abd7e4e0acf17 /src/libxtract.c | |
parent | 812e693b8c025c73ff5cddae3581b547465ab915 (diff) | |
download | LibXtract-c277634b13117e721e43f34a09cafb93c725fa3f.tar.gz LibXtract-c277634b13117e721e43f34a09cafb93c725fa3f.tar.bz2 LibXtract-c277634b13117e721e43f34a09cafb93c725fa3f.zip |
switched from single to double precision througout. closes #9
Diffstat (limited to 'src/libxtract.c')
-rw-r--r-- | src/libxtract.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libxtract.c b/src/libxtract.c index 43a7d16..3bc744e 100644 --- a/src/libxtract.c +++ b/src/libxtract.c @@ -24,7 +24,7 @@ #include "xtract/libxtract.h" #define XTRACT_H -int(*xtract[])(const float *, const int, const void *, float *) = +int(*xtract[])(const double *, const int, const void *, double *) = { /* xtract_scalar.h */ xtract_mean, |