Generates noise whose spectrum falls off in power by 3 dB per octave. This gives equal power over the span of each octave. This version gives 8 octaves of pink noise.
| mul |
Output will be multiplied by this value. |
| add |
This value will be added to the output. |
( SynthDef("help-PinkNoise", { arg out=0; Out.ar(out, PinkNoise.ar(0.4) ) }).play; )