sdrangel/modemm17/Correlator.cpp

10 wiersze
269 B
C++
Czysty Zwykły widok Historia

#include "Correlator.h"
2022-07-04 21:03:07 +00:00
namespace modemm17 {
// IIR with Nyquist of 1/240.
const std::array<float,3> Correlator::b = {4.24433681e-05, 8.48867363e-05, 4.24433681e-05};
const std::array<float,3> Correlator::a = {1.0, -1.98148851, 0.98165828};
2022-07-04 21:03:07 +00:00
} // namespace modemm17