Packages

object Slope extends ProductReader[Slope] with Serializable

A UGen measuring the slope of signal. It calculates the rate of change per second of a signal, as given by the following formula:

out(i) = (in(i) - in(i-1)) * sampleRate

It thus equal to HPZ1.ar(_) * 2 * SampleRate.ir

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Slope
  2. Serializable
  3. ProductReader
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def ar(in: GE): Slope

    in

    input signal to be measured

  2. def kr(in: GE): Slope

    in

    input signal to be measured

  3. def read(in: RefMapIn, key: String, arity: Int): Slope
    Definition Classes
    SlopeProductReader