Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
iir_filter.hh
1//
2// YASE IIR Module Header
3//
4// Copyright (C) 2022 Eric Klavins
5// This file is part of YASE
6//
7// YASE is free software: you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the Free Software
9// Foundation, either version 3 of the License, or (at your option) any later
10// version.
11//
12// YASE is distributed in the hope that it will be useful, but WITHOUT ANY
13// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15// details.
16//
17// You should have received a copy of the GNU General Public License along
18// with YASE. If not, see <https://www.gnu.org/licenses/>.
19//
20
21#ifndef YASE_FILTER_H
22#define YASE_FILTER_H
23
24#include "module.hh"
25
26namespace yase {
27
29
47 class IIRFilter : public Module {
48
49 public:
50
51 IIRFilter(int P, int Q); // size of IIR filter
52 IIRFilter(vector<double> A, vector<double> B); // coeefficient list
53 void init();
54 void update();
55 void set_coefficients(vector<double> A, vector<double> B);
56
57 protected:
58
59 int p, q;
60 vector<double> u, y, a, b;
61 int signal, offset;
62
63 };
64
65}
66
67#endif
This module implements an Infinite Impulse Response (IIR) filter.
Definition iir_filter.hh:47
void init()
Definition iir_filter.cc:58
void update()
Definition iir_filter.cc:62
void set_coefficients(vector< double > A, vector< double > B)
Definition iir_filter.cc:85
An abstract base class for modules.
Definition module.hh:39
Definition additive_saw.cc:24