moved Complex to DSP namespace

This commit is contained in:
Ahmet Inan 2019-01-20 15:25:54 +01:00
commit 76f1590f1a

View file

@ -6,6 +6,8 @@ Copyright 2018 Ahmet Inan <inan@aicodix.de>
#pragma once
namespace DSP {
template <typename T>
class Complex
{
@ -118,3 +120,5 @@ static constexpr T arg(Complex<T> a)
return atan2(a.imag(), a.real());
}
}