linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / GrayNoise.schelp
blobd172deeba0d45e6042dc144cefad9d3c98c89982
1 class:: GrayNoise
2 summary:: Gray Noise.
3 related:: Classes/BrownNoise, Classes/ClipNoise, Classes/PinkNoise, Classes/WhiteNoise
4 categories::  UGens>Generators>Stochastic
7 Description::
9 Generates noise which results from flipping random bits in a word.
10 This type of noise has a high RMS level relative to its peak to peak
11 level. The spectrum is emphasized towards lower frequencies.
14 classmethods::
16 method::ar, kr
18 argument::mul
19 Output will be multiplied by this value.
21 argument::add
22 This value will be added to the output.
24 Examples::
26 code::
29 SynthDef("help-GrayNoise", { arg out=0;
30         Out.ar(out,
31                 GrayNoise.ar(0.1)
32         )
33 }).play;