Files
dsp/dsp/window/hann.cpp
AlexandreRouma ae39eed0cb progress
2025-09-09 17:28:30 -04:00

15 lines
247 B
C++

#include "hann.h"
#include "../constants.h"
namespace dsp::window {
Hann::Hann() {
define();
}
void Hann::define() {
def = [](float x) {
float y = sinf(DSP_PI*x);
return y*y;
};
}
}