179 {
180
181 constexpr std::array den_coeffs = {1.0,
182 -10.301102119865,
183 48.5214567642597,
184 -137.934509572412,
185 262.914952985445,
186 -352.788381841481,
187 340.027874008585,
188 -235.39260470286,
189 114.698499845697,
190 -37.4634653062448,
191 7.38208765922137,
192 -0.664807695826097};
193
194 constexpr std::array num_coeffs = {2.7301694322809e-06, -1.8508123430239e-05, 5.75739466753894e-05,
195 -0.000104348734423658, 0.000111949190289715, -4.9384188225528e-05,
196 -4.9384188225522e-05, 0.00011194919028971, -0.000104348734423656,
197 5.75739466753884e-05, -1.85081234302388e-05, 2.73016943228086e-06};
198
199 _filter = std::make_unique<IirFilter>(den_coeffs.data(), num_coeffs.data(), den_coeffs.size());
200 }