class library: SynthDef - lazy implementation of removeUGen
[supercollider.git] / HelpSource / Classes / WhiteNoise.schelp
blob222fd4e87acd2d8e5ee9fa5f0797ff480a2f5d62
1 class:: WhiteNoise
2 summary:: White noise.
3 related:: Classes/BrownNoise, Classes/GrayNoise, Classes/ClipNoise, Classes/PinkNoise
4 categories::  UGens>Generators>Stochastic
7 Description::
9 Generates noise whose spectrum has equal power at all frequencies.
12 classmethods::
14 method::ar, kr
16 argument::mul
17 Output will be multiplied by this value.
19 argument::add
20 This value will be added to the output.
22 Examples::
24 code::
27 SynthDef("help-WhiteNoise", { arg out=0;
28         Out.ar(out,
29                 WhiteNoise.ar(0.25)
30         )
31 }).play;