FOS

object FOS extends ProductReader[FOS]

A first order filter section 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) + b1 * out(i-1)

'''Warning:''' there are bugs when the coefficients are modulated

===Examples===

// same as OnePole
play {
 val x = LFTri.ar(0.4) * 0.99
 FOS.ar(LFSaw.ar(200) * 0.1, 1 - x.abs, 0.0, x)
}
// same as OneZero
play {
 val x = LFTri.ar(0.4) * 0.99
 FOS.ar(LFSaw.ar(200) * 0.1, 1 - x.abs, x, 0.0)
}
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[FOS]
class Object
trait Matchable
class Any

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def ar(in: GE, a0: GE, a1: GE, b1: GE): FOS
Value Params
in

input signal to be filtered

def kr(in: GE, a0: GE, a1: GE, b1: GE): FOS
Value Params
in

input signal to be filtered

def read(in: RefMapIn, key: String, arity: Int): FOS