LFNoise2

object LFNoise2 extends ProductReader[LFNoise2]

A quadratically interpolating noise UGen. This interpolation happens between breakpoints chosen randomly between -1 and +1 at a specified frequency.

The frequency is quantized to the nearest integer division of the sample rate, and changes in frequency are only picked up at the next trigger. In contrast, variant LFDNoise3 has precise frequency and reacts to frequency changes instantly.

'''Note:''' Due to the interpolation, the output values can occasionally extend beyond the normal range of -1 to +1, if the frequency varies in certain ways.

===Examples===

// plain noise
play { LFNoise2.ar(1000) * 0.25 }
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[LFNoise2]
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): LFNoise2
Value Params
freq

rate at which to generate new breakpoints.

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

rate at which to generate new breakpoints.

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