LPZ2

object LPZ2 extends ProductReader[LPZ2]

three point average filter UGen. Implements the formula :

out(i) = 0.25 * (in(i) + 2 * in(i-1) + in(i-2))

===Examples===

// engage with mouse button
play {
 val sig = WhiteNoise.ar(0.5)
 val flt = LPZ2.ar(sig)
 LinXFade2.ar(sig, flt, MouseButton.kr(-1, 1))
}
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[LPZ2]
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): LPZ2
Value Params
in

input signal to be filtered

def kr(in: GE): LPZ2
Value Params
in

input signal to be filtered

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