SuperCollider CLASSES

PinkNoise

Pink Noise.
Source: /Applications/SuperCollider/SCClassLibrary/Common/Audio/Noise.sc
Inherits from: WhiteNoise : UGen : AbstractFunction : Object

Description

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.

Class Methods

*ar (mul = 1, add = 0)

From superclass: WhiteNoise

*kr (mul = 1, add = 0)

From superclass: WhiteNoise

Arguments:

mul

Output will be multiplied by this value.

add

This value will be added to the output.

Inherited class methods

Instance Methods

Inherited instance methods

Examples


(
SynthDef("help-PinkNoise", { arg out=0;
	Out.ar(out,
		PinkNoise.ar(0.4)
	)
}).play;
)