PeakFollower

object PeakFollower extends ProductReader[PeakFollower]

A UGen that continually reports the peak amplitude of the signal received at the input. If the absolute input level drops below the observed peak value, this value decreases by the factor given as decay parameter (but no more than the current absolute input level).

===Examples===

// mouse-controlled decay
play {
 val in    = Impulse.ar(2)
 val decay = MouseX.kr(0.995, 1.0001, 1).min(1.0)
 decay.poll(HPZ1.kr(decay).abs, "decay")
 val p     = PeakFollower.ar(in, decay)
 val tr    = Impulse.ar(20)
 val pm    = RunningMax.ar(p, tr)
 pm.roundTo(0.001).poll(20, "peak")
 in
}
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[PeakFollower]
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, decay: GE): PeakFollower
Value Params
decay

feedback coefficient controlling the release rate. This should be less than one, otherwise the UGen may blow up.

in

input signal to trace

def kr(in: GE, decay: GE): PeakFollower
Value Params
decay

feedback coefficient controlling the release rate. This should be less than one, otherwise the UGen may blow up.

in

input signal to trace

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