OnePole

object OnePole extends ProductReader[OnePole]

A one pole (IIR) filter UGen. Implements the formula :

out(i) = ((1 - abs(coef)) * in(i)) + (coef * out(i-1))

'''Warning:''' there are bugs when the coefficient is modulated

See also
Companion
class
trait Product
trait Mirror
trait ProductReader[OnePole]
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, coeff: GE): OnePole
Value Params
coeff

feedback coefficient. Should be between -1 and +1

in

input signal to be processed

def kr(in: GE, coeff: GE): OnePole
Value Params
coeff

feedback coefficient. Should be between -1 and +1

in

input signal to be processed

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