c@225: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ c@225: c@225: /* c@225: QM DSP Library c@225: c@225: Centre for Digital Music, Queen Mary, University of London. c@225: This file copyright 2005-2006 Christian Landone. c@225: All rights reserved. c@225: */ c@225: c@225: #ifndef CORRELATION_H c@225: #define CORRELATION_H c@225: c@225: #define EPS 2.2204e-016 c@225: c@225: class Correlation c@225: { c@225: public: c@225: void doAutoUnBiased( double* src, double* dst, unsigned int length ); c@225: Correlation(); c@225: virtual ~Correlation(); c@225: c@225: }; c@225: c@225: #endif //