view WindowFunction.h @ 2:1d0b7dcea27f

Added manual setting of timestamps as wasn't working on both test machines.
author Carl Bussey <c.bussey@se10.qmul.ac.uk>
date Wed, 09 Jul 2014 14:32:32 +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__) */