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

12
inc/BandPassFilter.h Normal file
View File

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