DelayN

object DelayN extends ProductReader[DelayN]

Simple delay line with no interpolation. The initial buffer contents is zero.

===Examples===

// Delayed random pulses
play {
 // Dust randomly triggers Decay to create an exponential
 // decay envelope for the WhiteNoise input source
 val z = Decay.ar(Dust.ar(2) * 0.5, 0.3) * WhiteNoise.ar
 DelayN.ar(z, 0.2, 0.2) + z  // input is mixed with delay via the add input
}
// Recursive application
play {
 val z = Decay2.ar(Dust.ar(1) * 0.5, 0.01, 0.1) * Saw.ar(Seq(100, 101)) * 0.5
 (z /: (0 until 5)) { (zi, i) =>
   DelayN.ar(RLPF.ar(zi, Rand(100, 3000), 0.03), 1, 1.0 / (2 << i)) + zi * 0.5
 }
}
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[DelayN]
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, maxDelayTime: GE, delayTime: GE): DelayN
Value Params
delayTime

Delay time in seconds.

in

The input signal.

maxDelayTime

The maximum delay time in seconds. used to initialize the delay buffer size. ''(init-time only)''

def kr(in: GE, maxDelayTime: GE, delayTime: GE): DelayN
Value Params
delayTime

Delay time in seconds.

in

The input signal.

maxDelayTime

The maximum delay time in seconds. used to initialize the delay buffer size. ''(init-time only)''

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