object PeakFollower extends 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
- Alphabetic
- By Inheritance
- PeakFollower
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
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()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )