object PeakFollower extends ProductReader[PeakFollower] with Serializable
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
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PeakFollower
- Serializable
- ProductReader
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def ar(in: GE, decay: GE = 0.999f): PeakFollower
- in
input signal to trace
- decay
feedback coefficient controlling the release rate. This should be less than one, otherwise the UGen may blow up.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def kr(in: GE, decay: GE = 0.999f): PeakFollower
- in
input signal to trace
- decay
feedback coefficient controlling the release rate. This should be less than one, otherwise the UGen may blow up.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def read(in: RefMapIn, key: String, arity: Int): PeakFollower
- Definition Classes
- PeakFollower → ProductReader
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated