Integrator

object Integrator extends ProductReader[Integrator]

A filter UGen to integrate an input signal with a leak. Implements the formula :

out(i) = 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[Integrator]
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): Integrator
Value Params
coeff

the leak coefficient. Should be between -1 and +1

in

input signal to be processed

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

the leak coefficient. Should be between -1 and +1

in

input signal to be processed

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