DelayN:
Filter:
Classes | UGens > Delays

DelayN : PureUGen : UGen : AbstractFunction : Object

Simple delay line with no interpolation.
Source: Delays.sc
Subclasses: DelayC, DelayL

Description

Simple delay line with no interpolation. See also DelayL which uses linear interpolation, and DelayC which uses cubic interpolation.

This UGen will create aliasing artifacts if you modulate the delay time, which is also quantized to the nearest sample period. If these are undesirable properties, use DelayL or DelayC. But if your delay time is fixed and sub-sample accuracy is not needed, this is the most CPU-efficient choice with no loss in quality.

The term "delay" is often used in electronic music to refer to a delay line with feedback. If you are looking for that, try CombN.

Class Methods

DelayN.ar(in: 0.0, maxdelaytime: 0.2, delaytime: 0.2, mul: 1.0, add: 0.0)

DelayN.kr(in: 0.0, maxdelaytime: 0.2, delaytime: 0.2, mul: 1.0, add: 0.0)

Arguments:

in

The input signal.

maxdelaytime

The maximum delay time in seconds, used to initialize the delay buffer size.

delaytime

Delay time in seconds.

mul

Output will be multiplied by this value.

add

This value will be added to the output.

Inherited class methods

Instance Methods

Inherited instance methods

Examples