StandardN

object StandardN extends ProductReader[StandardN]

A non-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.

===Examples===

// vary frequency
play { StandardN.ar(MouseX.kr(20, SampleRate.ir)) * 0.3 }
// mouse-controlled parameter
play { StandardN.ar(SampleRate.ir/2, MouseX.kr(0.9, 4)) * 0.3 }
// as a frequency control
play { SinOsc.ar(StandardN.ar(40, MouseX.kr(0.9, 4)) * 800 + 900) * 0.4 }
See also
Companion
class
trait Product
trait Mirror
trait ProductReader[StandardN]
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, k: GE, xi: GE, yi: GE): StandardN
Value Params
freq

Iteration frequency in Hertz

k

Perturbation amount

xi

Initial value of x

yi

Initial value of y

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