ReverseWindow

final case class ReverseWindow[A](in: GE[A], size: I, clump: I) extends SingleOut[A]

Reverses the (clumped) elements of input windows.

E.g. ReverseWindow(ArithmSeq(1, 1, 9), 3) gives 7,8,9, 4,5,6, 1,2,3. The behavior when size % clump != 0 is to clump "from both sides" of the window, e.g. ReverseWindow(ArithmSeq(1, 1, 9), 4) gives 6,7,8,9, 5, 1,2,3,4.

Value parameters:
clump

the grouping size of window elements

in

the window'ed signal to reverse

size

the window size

Companion:
object
trait Serializable
trait SingleOut[A]
trait Lazy[A]
trait GE[A]
trait Lazy
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

final def name: String
Inherited from:
UGenSource
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product