Packages

object LPZ2 extends ProductReader[LPZ2] with Serializable

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

LPZ1

HPZ2

BPZ2

BRZ2

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LPZ2
  2. Serializable
  3. ProductReader
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def ar(in: GE): LPZ2

    in

    input signal to be filtered

  2. def kr(in: GE): LPZ2

    in

    input signal to be filtered

  3. def read(in: RefMapIn, key: String, arity: Int): LPZ2
    Definition Classes
    LPZ2ProductReader