annotate 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
rev   line source
c@0 1 //
c@0 2 // WindowFunction.h
c@0 3 // Tempogram
c@0 4 //
c@0 5 // Created by Carl Bussey on 26/06/2014.
c@0 6 // Copyright (c) 2014 Carl Bussey. All rights reserved.
c@0 7 //
c@0 8
c@0 9 #ifndef __Tempogram__WindowFunction__
c@0 10 #define __Tempogram__WindowFunction__
c@0 11
c@0 12 #include <iostream>
c@0 13
c@0 14 class WindowFunction{
c@0 15 public:
c@0 16 static void hanning(float *signal, const unsigned int N, const bool normalise = false);
c@0 17 };
c@0 18
c@0 19 #endif /* defined(__Tempogram__WindowFunction__) */