de.sciss.synth.ugen
A second order filter section (biquad) UGen. Filter coefficients are given directly rather than calculated for you. The formula is equivalent to:
out(i) = a0 * in(i) + a1 * in(i-1) + a2 * in(i-2) + b1 * out(i-1) + b2 * out(i-2)
input signal to be filtered
FOS
Abstract method which must be implemented by creating the actual UGens during expansion.
UGen
Abstract method which must be implemented by creating the actual UGens during expansion. This method is at most called once during graph expansion
the expanded object (depending on the type parameter U)
U
A second order filter section (biquad) UGen. Filter coefficients are given directly rather than calculated for you. The formula is equivalent to:
input signal to be filtered
FOS