View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide

Noise (SC3d5)

back to Theory (redirected) John Horgan about Noise


There are various special Noise UGens that can be used either as audio signals (.ar) or as controls (.kr) for randomizing processes.
You can find the descriptions by James McCartney for the Noise UGens on http://www.audiosynth.com/schtmldocs/Help/Unit_Generators/Noise/

There are many ways to make a new noise function that controls a value.
Using the message poll and a Plug UGen, things like the following can be done, for example:

//make noise (sc3d5)
(
#{
var noisef;
noisef = { arg group, freq;  //freq is meant as update period like in LFNoise
            var plug, out, src;
            plug = Plug.kr(0);
            src = LFSaw.kr(SinOsc.kr(0.2, 0.3, 1.2));
            group.sched(0, inf {
                       plug.source = src.poll.rand;
                                                freq.reciprocal,
                        });
            plug
};
{
   Formant.ar(120, noisef.value(thisGroup, MouseX.kr([0.3, 3]))200+410, 0.4, 0.1)
}.play;
}.send;
)





Using Patterns as Noise Source
How to create noise with electromechanic devices




please feel free to contribute. how to contribute (redirected)
authors so far:
jrh
...

Links to this Page