Packages

object HPZ2 extends ProductReader[HPZ2] with Serializable

three point difference 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 = HPZ2.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. HPZ2
  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): HPZ2

    in

    input signal to be filtered

  2. def kr(in: GE): HPZ2

    in

    input signal to be filtered

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