LFClipNoise

object LFClipNoise extends ProductReader[LFClipNoise]

A UGen that randomly generates the values -1 or +1 at a rate given by the nearest integer division of the sample rate by the frequency argument. The difference to LFClipNoise is that this UGen quantizes time to the nearest integer division of the sample-rate, and the frequency input is only polled at the moment a new output value is scheduled.

===Examples===

// generator
play { LFClipNoise.ar(500) * 0.2 }
// random panning
play {
 val pos = LFClipNoise.ar(4)
 Pan2.ar(PinkNoise.ar, pos)
}
// modulate frequency
play { LFClipNoise.ar(XLine.kr(100, 10000, 20)) * 0.2 }
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[LFClipNoise]
class Object
trait Matchable
class Any

Type members

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def ar(freq: GE): LFClipNoise
Value Params
freq

rate at which to generate random values.

def kr(freq: GE): LFClipNoise
Value Params
freq

rate at which to generate random values.

def read(in: RefMapIn, key: String, arity: Int): LFClipNoise