diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-01-09 12:28:19 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-01-09 12:28:19 -0500 |
commit | 1b176cf6cd75c8031a140961655cdd3c16589a68 (patch) | |
tree | 8415664e40a9a768d8c3a35fd81252bfdefb72f9 /examples/6_iir_test.cpp | |
parent | fde531e7c44ea917f745a9f800178fbe83fa19b5 (diff) |
small changes; sig gen square(), triangle(), pulse()
Diffstat (limited to 'examples/6_iir_test.cpp')
-rw-r--r-- | examples/6_iir_test.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/6_iir_test.cpp b/examples/6_iir_test.cpp new file mode 100644 index 0000000..116a680 --- /dev/null +++ b/examples/6_iir_test.cpp @@ -0,0 +1,13 @@ +Sample *process_data(Samples samples) +{ + constexpr float alpha = 0.7; + + static Sample prev = 2048; + + samples[0] = (1 - alpha) * samples[0] + alpha * prev; + for (unsigned int i = 1; i < samples.size(); i++) + samples[i] = (1 - alpha) * samples[i] + alpha * samples[i - 1]; + prev = samples[samples.size() - 1]; + + return samples.data(); +} |