annotate dsp/maths/Correlation.h @ 229:0e42bf10f29a

* fix compile error with gcc-4.1
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 26 Jul 2006 20:22:43 +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 //