wip: filter (lp, hp, bp)

This commit is contained in:
2023-09-07 23:53:29 +04:00
parent 868a59da0e
commit 5b97136f44
9 changed files with 168 additions and 0 deletions

13
inc/LowPassFilter.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include "Filter.h"
class LowPassFilter: public Filter
{
protected:
void calculate_coefficients() override;
public:
LowPassFilter(/* args */);
~LowPassFilter();
};