LFDNoise3:
Filter:
Classes | UGens > Generators > Stochastic

LFDNoise3 : LFNoise0 : UGen : AbstractFunction : Object

Dynamic cubic noise
Source: Noise.sc

Description

Similar to LFNoise2 , it generates polynomially interpolated random values at a rate given by the freq argument, with 3 differences:

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

Class Methods

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

From superclass: LFNoise0

LFDNoise3.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

Instance Methods

Inherited instance methods

Examples

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