lasp/cpp_src/dsp/lasp_freqsmooth.h
J.A. de Jong - Redu-Sone B.V., ASCEE V.O.F f9cf059c90
Some checks failed
Building, testing and releasing LASP if it has a tag / Build-Test-Ubuntu (push) Failing after 8s
Building, testing and releasing LASP if it has a tag / Release-Ubuntu (push) Has been skipped
Forgot to actually commit the Cpp files of the smoother
2024-03-11 16:33:28 +01:00

22 lines
327 B
C++

#pragma once
#include <vector>
#include <memory>
#include "lasp_types.h"
#include "lasp_mathtypes.h"
/**
* \addtogroup dsp
* @{
*/
/**
* @brief Frequency domain smoothing. Returns a smoothed variant of the power
* spectrum given as input.
*
*/
vd freqSmooth(const vd& freq,const vd& X,const unsigned w);
/** @} */