Packages

final case class PV_RandWipe(chainA: GE, chainB: GE, wipe: GE, trig: GE) extends SingleOut with ControlRated with HasSideEffect with IsIndividual with Product with Serializable

A phase vocoder UGen that cross-fades between two input spectra by taking bins randomly from them according to a given probability.

chainA

the first FFT'ed buffer (this gets replaced by the output signal)

chainB

the second FFT'ed buffer

wipe

the crossfader position from 0.0 (all bins are taken from chainA ) to 1.0 (all bins are taken from chainB ). For instance, if wipe is 0.5, half of the bins are taken from either input. The decision whether a bin is taken from A or B is random, however remains constant between two triggers.

trig

a signal the triggers the re-newed process of determining for each bin whether it will be taken from input A or B. A trigger occurs when passing from non-positive to positive value.

See also

PV_BinWipe

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PV_RandWipe
  2. Serializable
  3. IsIndividual
  4. HasSideEffect
  5. ControlRated
  6. SingleOut
  7. SomeOut
  8. Lazy
  9. GE
  10. UGenSource
  11. Expander
  12. Lazy
  13. Product
  14. Equals
  15. AnyRef
  16. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PV_RandWipe(chainA: GE, chainB: GE, wipe: GE, trig: GE)

    chainA

    the first FFT'ed buffer (this gets replaced by the output signal)

    chainB

    the second FFT'ed buffer

    wipe

    the crossfader position from 0.0 (all bins are taken from chainA ) to 1.0 (all bins are taken from chainB ). For instance, if wipe is 0.5, half of the bins are taken from either input. The decision whether a bin is taken from A or B is random, however remains constant between two triggers.

    trig

    a signal the triggers the re-newed process of determining for each bin whether it will be taken from input A or B. A trigger occurs when passing from non-positive to positive value.

Value Members

  1. val chainA: GE
  2. val chainB: GE
  3. lazy val hashCode: Int
    Definition Classes
    UGenSource → AnyRef → Any
  4. final def name: String
    Definition Classes
    UGenSource
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. final def rate: Rate
    Definition Classes
    ControlRated
  7. val trig: GE
  8. val wipe: GE