Classes | UGens > Generators > Stochastic

LFDClipNoise : LFNoise0 : UGen : AbstractFunction : Object

Dynamic clipped noise
Source: Noise.sc

Description

Like LFClipNoise, it generates the values -1 or +1 at a rate given by the freq argument, with two differences:

If you don't need very high or very low freqs, or use fixed freqs, LFDClipNoise is more efficient.

Class Methods

LFDClipNoise.ar(freq: 500.0, mul: 1.0, add: 0.0)

From superclass: LFNoise0

LFDClipNoise.kr(freq: 500.0, mul: 1.0, add: 0.0)

From superclass: LFNoise0

Arguments:

freq

Approximate rate at which to generate random values.

mul

Output will be multiplied by this value.

add

This value will be added to the output.

Inherited class methods

7 methods from UGen ► show
8 methods from Object ► show

Instance Methods

Inherited instance methods

93 methods from UGen ► show
159 methods from AbstractFunction ► show
266 methods from Object ► show

Examples

[1] - LFClipNoise , as well as LFNoise0 , LFNoise1 and LFNoise2 quantize to the nearest integer division of the samplerate, and they poll the freq argument only when scheduled; thus they often seem to hang when freqs get very low.