commit a2f50e4da69ed8acbcbd7383b6bcf043b42d1f48
parent 19a9f3f485126d8964f992ad2eb4fe0feeaabce9
Author: [email protected] <[email protected]>
Date: Fri, 26 Aug 2016 23:33:44 +0300
Change default type for swept and jaehne
Diffstat:
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/examples/sample_rate_conversion.cpp b/examples/sample_rate_conversion.cpp
@@ -39,7 +39,7 @@ int main(int argc, char** argv)
const std::string options = "phaseresp=False";
- univector<fbase> swept_sine = swept<fbase>(0.5, len);
+ univector<fbase> swept_sine = swept(0.5, len);
{
auto r = resampler<fbase>(resample_quality::high, output_sr, input_sr, 1.0, 0.496);
diff --git a/include/kfr/dsp/oscillators.hpp b/include/kfr/dsp/oscillators.hpp
@@ -31,14 +31,14 @@
namespace kfr
{
-template <typename T>
-auto jaehne(T magn, size_t size)
+template <typename T = fbase>
+auto jaehne(identity<T> magn, size_t size)
{
return typed<T>(magn * sin(c_pi<T, 1, 2> * sqr(linspace(T(0), T(size), size, false)) / size), size);
}
-template <typename T>
-auto swept(T magn, size_t size)
+template <typename T = fbase>
+auto swept(identity<T> magn, size_t size)
{
return typed<T>(
magn * sin(c_pi<T, 1, 4> * sqr(sqr(linspace(T(0), T(size), size, false)) / sqr(T(size))) * T(size)),