de.sciss.lucre.matrix

Reduce

trait Reduce[S <: Sys[S]] extends Matrix[S] with Node[S]

Linear Supertypes
Node[S], VirtualNode[S], Reactor[S], Mutable[S.ID, S.Tx], Identifiable[S.ID], Matrix[S], Publisher[S, Update[S]], Disposable[S.Tx], Writable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Reduce
  2. Node
  3. VirtualNode
  4. Reactor
  5. Mutable
  6. Identifiable
  7. Matrix
  8. Publisher
  9. Disposable
  10. Writable
  11. AnyRef
  12. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def changed: EventLike[S, Update[S]]

    Definition Classes
    Publisher
  2. abstract def dim: Selection[S]

  3. abstract def dimensions(implicit tx: S.Tx): Vec[Matrix[S]]

    The sequence of underlying dimension matrices.

    The sequence of underlying dimension matrices. The part of each dimension covered by this matrix is reflected by the corresponding entry in ranges!

    In other words, the reductions and transformations associated with the current (and possibly any number of preceding) matrices are not reflected in the returned objects! To read the dimensional values with respect to the actual matrix coordinates, the getDimensionKey method can be used.

    Definition Classes
    Matrix
  4. abstract def disposeData()(implicit tx: S.Tx): Unit

    Attributes
    protected
    Definition Classes
    Node
  5. abstract def getDimensionKey(index: Int, useChannels: Boolean)(implicit tx: S.Tx): Key

    Produces a matrix key for the dimension of a given index.

    Produces a matrix key for the dimension of a given index. Since a dimension is 1-dimensional, the key will either have a streaming-index of zero (when useChannels is false), resulting in a 1-channel reader with shape(index) frames; or it will have a streaming-index of -1 (when useChannels is true), resulting in an n-channel reader with one frame, where n == shape(index).

    index

    the index of the dimension, from zero until rank

    useChannels

    if true produces multi-channel file of one frame, if false produces monophonic file of several frames.

    Definition Classes
    Matrix
  6. abstract def getKey(streamDim: Int)(implicit tx: S.Tx): Key

    The key of a matrix is an immutable value that represents its current state, possibly prepared with a transposition to be streamed along one of its dimensions.

    The key of a matrix is an immutable value that represents its current state, possibly prepared with a transposition to be streamed along one of its dimensions.

    streamDim

    the index of the dimension to stream the matrix data through, or -1 to read the whole matrix in one frame.

    Definition Classes
    Matrix
  7. abstract def in: Matrix[S]

  8. abstract def indexOfDim(implicit tx: S.Tx): Int

  9. abstract def mkCopy()(implicit tx: S.Tx): Matrix[S]

    Definition Classes
    Matrix
  10. abstract def name(implicit tx: S.Tx): String

    A matrix has a name.

    A matrix has a name. For example, when coming from a NetCDF data source, the matrix name corresponds to a variable name.

    Definition Classes
    Matrix
  11. abstract def op: Op[S]

  12. abstract def ranges(implicit tx: S.Tx): Vec[Range]

    The ranges specify the regions inside the underlying dimension matrices covered by this matrix.

    The ranges specify the regions inside the underlying dimension matrices covered by this matrix. For example if a 4 x 5 matrix is reduced in its first dimension using a slice 1 to 2 operator, then the _dimension_ will have a size of four, but the first range will be 1 to 2 (and thus size 2).

    Definition Classes
    Matrix
  13. abstract def shape(implicit tx: S.Tx): Vec[Int]

    The shape is the vector of dimensional sizes.

    The shape is the vector of dimensional sizes. This is equivalent to ranges.map(_.size). Note that the dimensions themselves may be larger.

    Definition Classes
    Matrix
  14. abstract def targets: Targets[S]

    Attributes
    protected
    Definition Classes
    Node
  15. abstract def units(implicit tx: S.Tx): String

    The units of the matrix cells, or an empty string to indicate that no units are specified.

    The units of the matrix cells, or an empty string to indicate that no units are specified.

    Definition Classes
    Matrix
  16. abstract def writeData(out: DataOutput): Unit

    Attributes
    protected
    Definition Classes
    Node

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def dispose()(implicit tx: S.Tx): Unit

    Definition Classes
    Node → Disposable
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(that: Any): Boolean

    Definition Classes
    Reactor → AnyRef → Any
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Definition Classes
    Reactor → AnyRef → Any
  14. final def id: S.ID

    Definition Classes
    Node → Identifiable
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. final def isInvalid(implicit tx: S.Tx): Boolean

    Attributes
    protected
    Definition Classes
    Node
  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. def rank(implicit tx: S.Tx): Int

    The rank is the number of dimensions.

    The rank is the number of dimensions.

    Definition Classes
    Matrix
  21. def reader(streamDim: Int)(implicit tx: S.Tx, resolver: Resolver[S]): Reader

    Definition Classes
    Matrix
  22. def reducedDimensions(implicit tx: S.Tx): Vec[Matrix[S]]

    Definition Classes
    Matrix
  23. def reducedRanges(implicit tx: S.Tx): Vec[Range]

    Definition Classes
    Matrix
  24. def reducedRank(implicit tx: S.Tx): Int

    Definition Classes
    Matrix
  25. def reducedShape(implicit tx: S.Tx): Vec[Int]

    Definition Classes
    Matrix
  26. def size(implicit tx: S.Tx): Long

    The size is the number of matrix cells, that is the product of the shape.

    The size is the number of matrix cells, that is the product of the shape.

    Definition Classes
    Matrix
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

    Definition Classes
    Node → AnyRef → Any
  29. final def validated()(implicit tx: S.Tx): Unit

    Attributes
    protected
    Definition Classes
    Node
  30. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def write(out: DataOutput): Unit

    Definition Classes
    Node → Writable

Inherited from Node[S]

Inherited from VirtualNode[S]

Inherited from Reactor[S]

Inherited from Mutable[S.ID, S.Tx]

Inherited from Identifiable[S.ID]

Inherited from Matrix[S]

Inherited from Publisher[S, Update[S]]

Inherited from Disposable[S.Tx]

Inherited from Writable

Inherited from AnyRef

Inherited from Any

Ungrouped