MCPcopy Create free account
hub / github.com/VCVRack/Befaco / process

Method process

src/ChowDSP.hpp:41–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39
40 template <int N = ORDER>
41 inline typename std::enable_if <N == 2, T>::type process(T x) noexcept {
42 T y = z[1] + x * b[0];
43 z[1] = x * b[1] - y * a[1];
44 return y;
45 }
46
47 template <int N = ORDER>
48 inline typename std::enable_if <N == 3, T>::type process(T x) noexcept {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected