Generates quadratically interpolated random values at a rate given by the nearest integer division of the sample rate by the freq
argument.
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. |
{ LFNoise2.ar(1000, 0.25) }.play;
// modulate frequency
{ LFNoise2.ar(XLine.kr(1000, 10000, 10), 0.25) }.play;
// as frequency modulator
(
{ SinOsc.ar(
LFNoise2.ar(4, 400, 450),
0, 0.2
)
}.play;
)
// freq is the rate of interpolation points
{ var freq = 1000; [LFNoise2.ar(freq), Impulse.ar(freq)] }.plot