Files
sdrpp/core/src/dsp/window/blackman_harris.h
AlexandreRouma d1318d3a0f even more stuff
2022-06-15 16:08:54 +02:00

10 lines
277 B
C++

#pragma once
#include <math.h>
#include "cosine.h"
namespace dsp::window {
inline double blackmanHarris(double n, double N) {
const double coefs[] = { 0.35875, 0.48829, 0.14128, 0.01168 };
return cosine(n, N, coefs, sizeof(coefs) / sizeof(double));
}
}