Packages

final case class StandardL(rate: Rate, freq: GE = Nyquist(), k: GE = 1.0f, xi: GE = 0.5f, yi: GE = 0.0f) extends SingleOut with Product with Serializable

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.

freq

Iteration frequency in Hertz

k

Perturbation amount

xi

Initial value of x

yi

Initial value of y

See also

StandardN

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StandardL
  2. Serializable
  3. SingleOut
  4. SomeOut
  5. Lazy
  6. GE
  7. UGenSource
  8. Expander
  9. Lazy
  10. Product
  11. Equals
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new StandardL(rate: Rate, freq: GE = Nyquist(), k: GE = 1.0f, xi: GE = 0.5f, yi: GE = 0.0f)

    freq

    Iteration frequency in Hertz

    k

    Perturbation amount

    xi

    Initial value of x

    yi

    Initial value of y

Value Members

  1. val freq: GE
  2. lazy val hashCode: Int
    Definition Classes
    UGenSource → AnyRef → Any
  3. val k: GE
  4. final def name: String
    Definition Classes
    UGenSource
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. val rate: Rate
    Definition Classes
    StandardLGE
  7. val xi: GE
  8. val yi: GE