RLPF

object RLPF extends ProductReader[RLPF]

A resonant low pass filter UGen.

===Examples===

// mouse controlled frequency and Q
play {
 val in   = WhiteNoise.ar(0.5)
 val freq = MouseX.kr(200, 10000, 1)
 val q    = MouseY.kr(1, 100, 1) // bottom to top
 val flt  = RLPF.ar(in, freq, q.reciprocal)
 flt / q.sqrt // compensate for energy loss
}
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[RLPF]
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, freq: GE, rq: GE): RLPF
Value Params
freq

cutoff frequency in Hertz

in

input signal to be filtered

rq

reciprocal of Q. The Q (or quality) is conventionally defined as cutoff-frequency / bandwidth, meaning that rq  = bandwidth / cutoff-frequency. A higher Q or lower rq produces a steeper filter.

def kr(in: GE, freq: GE, rq: GE): RLPF
Value Params
freq

cutoff frequency in Hertz

in

input signal to be filtered

rq

reciprocal of Q. The Q (or quality) is conventionally defined as cutoff-frequency / bandwidth, meaning that rq  = bandwidth / cutoff-frequency. A higher Q or lower rq produces a steeper filter.

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