view WindowFunction.h @ 4:597f033fa7a2

* Some cleaning and rearranging to prepare for band processing implementation
author Carl Bussey <c.bussey@se10.qmul.ac.uk>
date Tue, 05 Aug 2014 15:56:59 +0100
parents 31d2a7e07786
children 21147df9cb2d
line wrap: on
line source
//
//  WindowFunction.h
//  Tempogram
//
//  Created by Carl Bussey on 26/06/2014.
//  Copyright (c) 2014 Carl Bussey. All rights reserved.
//

#ifndef __Tempogram__WindowFunction__
#define __Tempogram__WindowFunction__

#include <iostream>

class WindowFunction{
public:
    static void hanning(float *signal, const unsigned int N, const bool normalise = false);
};

#endif /* defined(__Tempogram__WindowFunction__) */