annotate maths/Correlation.h @ 489:701233f8ed41
Make include-guards consistent
author |
Chris Cannam <cannam@all-day-breakfast.com> |
date |
Fri, 31 May 2019 16:48:37 +0100 |
parents |
d5014ab8b0e5 |
children |
af5b7ef02aa7 |
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 void doAutoUnBiased( double* src, double* dst, unsigned int length );
|
c@241
|
22 Correlation();
|
c@241
|
23 virtual ~Correlation();
|
c@241
|
24
|
c@241
|
25 };
|
c@241
|
26
|
c@241
|
27 #endif //
|