mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-20 07:12:43 +00:00
even more stuff
This commit is contained in:
10
core/src/dsp/window/blackman_harris.h
Normal file
10
core/src/dsp/window/blackman_harris.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#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));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user