StandardL:
Filter:
Classes | UGens > Generators > Chaotic

StandardL : StandardN : ChaosGen : UGen : AbstractFunction : Object

Standard map chaotic generator
Source: Chaos.sc

Description

A linear-interpolating sound generator based on the difference equations:

    x(n+1) = (x(n) + y(n+1)) % 2pi
    y(n+1) = (y(n) + k * sin(x(n))) % 2pi

The standard map is an area preserving map of a cylinder discovered by the plasma physicist Boris Chirikov.

sclang code translation:

Class Methods

StandardL.ar(freq: 22050, k: 1.0, xi: 0.5, yi: 0, mul: 1.0, add: 0.0)

From superclass: StandardN

Arguments:

freq

Iteration frequency in Hertz

k

Perturbation amount

xi

Initial value of x

yi

Initial value of y

Inherited class methods

Instance Methods

Inherited instance methods

Examples