/* ldetrend.c Joe Mietus Dec 19 2001 ------------------------------------------------------------------------------- ldetrend: Locally detrend signals Copyright (C) 2002 Joe Mietus This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. You may contact the author by e-mail (joe at physionet dot org) or postal mail (MIT Room E25-505A, Cambridge, MA 02139 USA). For updates to this software, please visit PhysioNet (http://www.physionet.org/). _______________________________________________________________________________ Reads 2 columns from stdin and locally detrends by subtracting a least squares fitted line over a sliding window 2*hwin+1 points wide. Usage: ldetrend hwin */ #include #define MAXDAT 262144 main(argc, argv) int argc; char *argv[]; { int i, n, hwin, win; double a, b, sumx, sumy, sumxy, sumx2; static double x[MAXDAT+1], y[MAXDAT+1]; if (argc != 2) { usage(argv[0]); exit(1); } if ((hwin = atoi(argv[1])) < 1) { fprintf(stderr, "%s : hwin must be greater than 0\n", argv[0]); exit(1); } win = 2*hwin+1; sumx = sumy = sumxy = sumx2 = 0.; for (n=0; n= n) { b = (sumxy - sumx*sumy/n) / (sumx2 - sumx*sumx/n); a = sumy/n - b*sumx/n; for (i=0; i