comparison WindowFunction.h @ 0:31d2a7e07786

Moved all to folder "tempogram".
author Carl Bussey <c.bussey@se10.qmul.ac.uk>
date Mon, 07 Jul 2014 10:08:14 +0100
parents
children 21147df9cb2d
comparison
equal deleted inserted replaced
-1:000000000000 0:31d2a7e07786
1 //
2 // WindowFunction.h
3 // Tempogram
4 //
5 // Created by Carl Bussey on 26/06/2014.
6 // Copyright (c) 2014 Carl Bussey. All rights reserved.
7 //
8
9 #ifndef __Tempogram__WindowFunction__
10 #define __Tempogram__WindowFunction__
11
12 #include <iostream>
13
14 class WindowFunction{
15 public:
16 static void hanning(float *signal, const unsigned int N, const bool normalise = false);
17 };
18
19 #endif /* defined(__Tempogram__WindowFunction__) */