annotate maths/Correlation.h @ 515:08bcc06c38ec tip master

Remove fast-math
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 28 Jan 2020 15:27:37 +0000
parents af5b7ef02aa7
children
rev   line source
c@241 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
c@241 2 /*
c@241 3 QM DSP Library
c@241 4
c@241 5 Centre for Digital Music, Queen Mary, University of London.
c@309 6 This file 2005-2006 Christian Landone.
c@309 7
c@309 8 This program is free software; you can redistribute it and/or
c@309 9 modify it under the terms of the GNU General Public License as
c@309 10 published by the Free Software Foundation; either version 2 of the
c@309 11 License, or (at your option) any later version. See the file
c@309 12 COPYING included with this distribution for more information.
c@241 13 */
c@241 14
cannam@489 15 #ifndef QM_DSP_CORRELATION_H
cannam@489 16 #define QM_DSP_CORRELATION_H
c@241 17
c@241 18 class Correlation
c@241 19 {
c@241 20 public:
c@241 21 Correlation();
c@241 22 virtual ~Correlation();
c@241 23
cannam@499 24 void doAutoUnBiased( double* src, double* dst, int length );
c@241 25 };
c@241 26
cannam@499 27 #endif