diff --git a/include/dsp/common.hpp b/include/dsp/common.hpp index e696f076..f2b3a621 100644 --- a/include/dsp/common.hpp +++ b/include/dsp/common.hpp @@ -47,7 +47,7 @@ T amplitudeToDb(T amp) { template T dbToAmplitude(T db) { - return std::pow(10, db / 20); + return simd::pow(10, db / 20); } // Functions for parameter scaling