Mercurial > hg > qm-dsp
annotate dsp/maths/Correlation.h @ 236:ac95b396c8c3
...
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 02 Apr 2007 13:20:30 +0000 |
parents | 49844bc8a895 |
children |
rev | line source |
---|---|
c@225 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
c@225 | 2 |
c@225 | 3 /* |
c@225 | 4 QM DSP Library |
c@225 | 5 |
c@225 | 6 Centre for Digital Music, Queen Mary, University of London. |
c@225 | 7 This file copyright 2005-2006 Christian Landone. |
c@225 | 8 All rights reserved. |
c@225 | 9 */ |
c@225 | 10 |
c@225 | 11 #ifndef CORRELATION_H |
c@225 | 12 #define CORRELATION_H |
c@225 | 13 |
c@225 | 14 #define EPS 2.2204e-016 |
c@225 | 15 |
c@225 | 16 class Correlation |
c@225 | 17 { |
c@225 | 18 public: |
c@225 | 19 void doAutoUnBiased( double* src, double* dst, unsigned int length ); |
c@225 | 20 Correlation(); |
c@225 | 21 virtual ~Correlation(); |
c@225 | 22 |
c@225 | 23 }; |
c@225 | 24 |
c@225 | 25 #endif // |