Packages

final case class Formant(rate: Rate, fundFreq: GE = 440.0f, formFreq: GE = 1760.0f, bw: GE = 880.0f) extends SingleOut with Product with Serializable

A UGen that generates a set of harmonics around a formant frequency at a given fundamental frequency.

fundFreq

Fundamental frequency in Hertz. Read at control-rate, so if input is audio-rate, it will be sub-sampled.

formFreq

Formant frequency in Hertz. This determines the overtone(s) most prominently perceived. Read at control-rate, so if input is audio-rate, it will be sub-sampled.

bw

Pulse width frequency in Hertz. Controls the bandwidth of the formant. Must be greater than or equal to fundFreq . Read at control-rate, so if input is audio-rate, it will be sub-sampled.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Formant
  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 Formant(rate: Rate, fundFreq: GE = 440.0f, formFreq: GE = 1760.0f, bw: GE = 880.0f)

    fundFreq

    Fundamental frequency in Hertz. Read at control-rate, so if input is audio-rate, it will be sub-sampled.

    formFreq

    Formant frequency in Hertz. This determines the overtone(s) most prominently perceived. Read at control-rate, so if input is audio-rate, it will be sub-sampled.

    bw

    Pulse width frequency in Hertz. Controls the bandwidth of the formant. Must be greater than or equal to fundFreq . Read at control-rate, so if input is audio-rate, it will be sub-sampled.

Value Members

  1. val bw: GE
  2. val formFreq: GE
  3. val fundFreq: GE
  4. lazy val hashCode: Int
    Definition Classes
    UGenSource → AnyRef → Any
  5. final def name: String
    Definition Classes
    UGenSource
  6. def productElementNames: Iterator[String]
    Definition Classes
    Product
  7. val rate: Rate
    Definition Classes
    FormantGE