diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-21 19:04:22 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-21 19:04:22 -0500 |
commit | 7b4a518bfe47fb1d0b2a32fc5c93ed0157d2dc6c (patch) | |
tree | 89e077fc55e3f1fc160e43fccb2c2128b8be2e26 /gr-blocks/lib/rms_ff_impl.h | |
parent | e7bd4dcbd4ee20923d38ddd02976d9f0516cd347 (diff) |
blocks: implementing averaging inside rms blocks.
single_pole_iir_filter lives in gr-filter.
Diffstat (limited to 'gr-blocks/lib/rms_ff_impl.h')
-rw-r--r-- | gr-blocks/lib/rms_ff_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/rms_ff_impl.h b/gr-blocks/lib/rms_ff_impl.h index 82ecbda52d..e0ea868c3b 100644 --- a/gr-blocks/lib/rms_ff_impl.h +++ b/gr-blocks/lib/rms_ff_impl.h @@ -36,7 +36,7 @@ namespace gr { class rms_ff_impl : public rms_ff { private: - gr_single_pole_iir<double,double,double> d_iir; + double d_alpha, d_beta, d_avg; public: rms_ff_impl(double alpha = 0.0001); |