aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJamie Bullock <jamie@jamiebullock.com>2013-07-01 17:25:21 +0100
committerJamie Bullock <jamie@jamiebullock.com>2013-07-01 17:25:21 +0100
commit182e85a4f448395144c47612455be4ccc64bd483 (patch)
tree5f99ae0443f1e502f9e1e42567a5846f1b6f6769 /src
parent03eb9cf0800c26c48e0369158f7058d3ae555fde (diff)
downloadLibXtract-182e85a4f448395144c47612455be4ccc64bd483.tar.gz
LibXtract-182e85a4f448395144c47612455be4ccc64bd483.tar.bz2
LibXtract-182e85a4f448395144c47612455be4ccc64bd483.zip
Remove spurious print statement
Diffstat (limited to 'src')
-rw-r--r--src/vector.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vector.c b/src/vector.c
index 7da8576..5074b65 100644
--- a/src/vector.c
+++ b/src/vector.c
@@ -524,7 +524,6 @@ int xtract_peak_spectrum(const double *data, const int N, const void *argv, doub
(y3 = input[n+1])) / (input[n - 1] - 2 *
(y2 = input[n]) + input[n + 1])));
result[n] = y2 - .25 * (y - y3) * p;
- printf("result[%d] = %f\tresult[N+n] = %f\n", n, result[n], result[n+N]);
}
else
{