mirror of
https://github.com/aicodix/dsp.git
synced 2026-04-27 22:35:45 +00:00
removed CoeffsFunc
This commit is contained in:
parent
98a5a204d1
commit
7b2cf8970a
3 changed files with 14 additions and 21 deletions
|
|
@ -8,12 +8,11 @@ Copyright 2018 Ahmet Inan <inan@aicodix.de>
|
|||
|
||||
#include "const.hh"
|
||||
#include "utils.hh"
|
||||
#include "coeffs.hh"
|
||||
|
||||
namespace DSP {
|
||||
|
||||
template <typename TYPE>
|
||||
class LowPass : public CoeffsFunc<TYPE>
|
||||
class LowPass
|
||||
{
|
||||
TYPE f;
|
||||
public:
|
||||
|
|
@ -26,7 +25,7 @@ public:
|
|||
};
|
||||
|
||||
template <typename TYPE>
|
||||
class HighPass : public CoeffsFunc<TYPE>
|
||||
class HighPass
|
||||
{
|
||||
TYPE f;
|
||||
public:
|
||||
|
|
@ -41,7 +40,7 @@ public:
|
|||
};
|
||||
|
||||
template <typename TYPE>
|
||||
class BandPass : public CoeffsFunc<TYPE>
|
||||
class BandPass
|
||||
{
|
||||
TYPE f0, f1;
|
||||
public:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue