Generates noise whose spectrum has equal power at all frequencies.
mul |
Output will be multiplied by this value. |
add |
This value will be added to the output. |
(
SynthDef("help-WhiteNoise", { arg out=0;
Out.ar(out,
WhiteNoise.ar(0.25)
)
}).play;
)