Packages

  • package root
    Definition Classes
    root
  • package de
    Definition Classes
    root
  • package h2b
    Definition Classes
    de
  • package scala
    Definition Classes
    h2b
  • package lib
    Definition Classes
    scala
  • package math
    Definition Classes
    lib
  • package linalg

    LinAlg provides data types and operations for algebraic vectors and matrices.

    LinAlg provides data types and operations for algebraic vectors and matrices.

    Vector and Matrix elements can be of arbitrary type, provided that a factory for that element type is available. Currently, factories exist for Double, Float, Long, Int, Short, Byte and Char.

    Vector and matrix (row and column) indices can be any integer (to state more precisely, an index must be in the interval [Mindex, Maxdex], as defined in the Index object). But only elements corresponding to a subset of that whole integer range actually are stored (the concrete elements), while all other elements by definition are zero (virtual elements).

    This concept (which I got to value a long time ago with the ALGOL68 library prelude TORRIX [1]) does not only provide a natural approach to operations with vectors and matrixes of different index ranges, but also prevents from index-out-of-bounds exceptions.

    Concrete index ranges (those indices that correspond to concrete elements) implicitly or explicitly are assigned when a vector or matrix is created. By default, it starts at 1 and extends to the number of elements specified, but this is customizable.

    Vectors and Matrixes both are immutable by design, so there exist no update methods or the like (you cannot do v(i) = something). There are, however, builder classes that allow you to build Vectors and Matrixes element by element.

    Currently, operations on vectors and matrices require identical element types. For instance, you can add a Vector[Int] to another Vector[Int], but you cannot add a Vector[Int] to another Vector[Double].

    Definition Classes
    math
    See also

    [1] S. G. van der Meulen, P. Kühling, "Programmieren in ALGOL68", Bd. II (Berlin, New York: de Gruyter), 149-188 (1977)

  • package building

    Vector and matrix builders.

    Vector and matrix builders.

    Definition Classes
    linalg
    Since

    3.0.0

  • package factory

    Vector and matrix factories including scalar operations and concrete factories for standard types.

    Vector and matrix factories including scalar operations and concrete factories for standard types.

    Definition Classes
    linalg
    Since

    3.0.0

  • package storage

    Storage engines for vectors and matrices.

    Storage engines for vectors and matrices.

    Definition Classes
    linalg
    Since

    3.0.0

  • GenMatrixLike
  • GenVectorLike
  • Index
  • Index2
  • Matrix
  • MatrixLike
  • ScalarOps
  • SparseMatrix
  • SparseMatrixLike
  • SparseVector
  • SparseVectorLike
  • Vector
  • VectorLike
  • VectorOps

trait Matrix[E] extends Iterable[Vector[E]] with GenMatrixLike[E, Matrix[E]] with MatrixStore[E] with Equals with Immutable

An immutable algebraic matrix consisting of E elements.

The index range of a matrix in both dimensions spans the whole Int set. The concrete range is [(index.dim1.low,index.dim1.high),(index.dim2.low,index.dim2.high)]; all values outside of the concrete range are treated as zero. An IndexOutOfBoundsException will never occur.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Matrix
  2. Immutable
  3. MatrixStore
  4. GenMatrixLike
  5. Iterable
  6. IterableLike
  7. Equals
  8. GenIterable
  9. GenIterableLike
  10. Traversable
  11. GenTraversable
  12. GenericTraversableTemplate
  13. TraversableLike
  14. GenTraversableLike
  15. Parallelizable
  16. TraversableOnce
  17. GenTraversableOnce
  18. FilterMonadic
  19. HasNewBuilder
  20. AnyRef
  21. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Matrix[E]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def apply(i: Int, j: Int): E

    i

    the row index

    j

    the column index

    returns

    the element with index i,j

    Definition Classes
    MatrixStore
  2. abstract def col(j: Int): Vector[E]

    j

    the column index

    returns

    the column vector with index j

    Definition Classes
    MatrixStore
  3. abstract def dataHashCode: Int
    Attributes
    protected
    Definition Classes
    MatrixStore
  4. implicit abstract val elemTag: ClassTag[E]
    Attributes
    protected
    Definition Classes
    MatrixStore
  5. abstract def index: Index2
    Definition Classes
    MatrixStore
  6. abstract def row(i: Int): Vector[E]

    i

    the row index

    returns

    the row vector with index i

    Definition Classes
    MatrixStore

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def *[That <: Vector[E]](v: That)(implicit vbf: VectorCanBuildFrom[That, E, That]): That

    Returns the product of this and v.

    Returns the product of this and v.

    v

    the vector to be multiplied

    returns

    this*v

    Definition Classes
    GenMatrixLike
  4. def *[That >: Matrix[E] <: Matrix[E]](b: That)(implicit vbf: VectorCanBuildFrom[Vector[E], E, Vector[E]], mbf: MatrixCanBuildFrom[Matrix.this.type, Vector[E], That]): That

    Returns the product of this and b.

    Returns the product of this and b.

    b

    the other matrix to be multiplied

    returns

    this*b

    Definition Classes
    GenMatrixLike
  5. def *(s: E): Matrix[E]

    Scales this matrix by s.

    Scales this matrix by s.

    returns

    this*s

    Definition Classes
    GenMatrixLike
  6. def +[That >: Matrix[E] <: Matrix[E]](b: That)(implicit vbf: VectorCanBuildFrom[Vector[E], E, Vector[E]], mbf: MatrixCanBuildFrom[Matrix.this.type, Vector[E], That]): That

    Returns the sum of this and b.

    Returns the sum of this and b.

    b

    the other matrix to be added

    returns

    this+b

    Definition Classes
    GenMatrixLike
  7. def ++[B >: Vector[E], That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  8. def ++:[B >: Vector[E], That](that: Traversable[B])(implicit bf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike
  9. def ++:[B >: Vector[E], That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike
  10. def -[That >: Matrix[E] <: Matrix[E]](b: That)(implicit vbf: VectorCanBuildFrom[Vector[E], E, Vector[E]], mbf: MatrixCanBuildFrom[Matrix.this.type, Vector[E], That]): That

    Returns the difference of this and b.

    Returns the difference of this and b.

    b

    the other matrix to be subtracted

    returns

    this-b

    Definition Classes
    GenMatrixLike
  11. def /:[B](z: B)(op: (B, Vector[E]) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  12. def :\[B](z: B)(op: (Vector[E], B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def @@(at: (Int, Int)): Matrix[E]

    at

    tuple of the lower row- and column-index bounds of the new matrix

    returns

    a copy of this matrix with the specified lower row- and column-index bounds; all row vectors are shifted to this bound

    Definition Classes
    GenMatrixLike
  15. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  16. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  17. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  18. def aggregate[B](z: ⇒ B)(seqop: (B, Vector[E]) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  19. def apply(i: Int): Vector[E]

    i

    the row index

    returns

    the row vector with index i

    Definition Classes
    MatrixStore
  20. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  21. def atCol(at: Int): Matrix[E]

    at

    the lower column-index bound of the new matrix

    returns

    a copy of this matrix with the specified lower column-index bound; all row vectors are shifted to this bound

    Definition Classes
    GenMatrixLike
  22. def atRow(at: Int): Matrix[E]

    at

    the lower row-index bound of the new matrix

    returns

    a copy of this matrix with the specified lower row-index bound

    Definition Classes
    GenMatrixLike
  23. def binaryOp[That >: Matrix[E] <: Matrix[E]](f: (Vector[E], Vector[E]) ⇒ Vector[E], b: That)(implicit bf: MatrixCanBuildFrom[Matrix.this.type, Vector[E], That]): That
    Attributes
    protected
    Definition Classes
    GenMatrixLike
  24. def canEqual(other: Any): Boolean
    Definition Classes
    Matrix → IterableLike → Equals
  25. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  26. def colIterator: Iterator[Vector[E]]
  27. def colSum(): Vector[E]

    Returns the vector of column sums of this matrix.

    Returns the vector of column sums of this matrix.

    returns

    the vector of column sums of this

  28. def collect[B, That](pf: PartialFunction[Vector[E], B])(implicit bf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  29. def collectFirst[B](pf: PartialFunction[Vector[E], B]): Option[B]
    Definition Classes
    TraversableOnce
  30. def companion: GenericCompanion[Iterable]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  31. def copyToArray[B >: Vector[E]](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  32. def copyToArray[B >: Vector[E]](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  33. def copyToArray[B >: Vector[E]](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  34. def copyToBuffer[B >: Vector[E]](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  35. def count(p: (Vector[E]) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  36. final val dataHashStart: Int(1)
    Attributes
    protected
    Definition Classes
    MatrixStore
  37. def drop(n: Int): Matrix[E]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  38. def dropRight(n: Int): Matrix[E]
    Definition Classes
    IterableLike
  39. def dropWhile(p: (Vector[E]) ⇒ Boolean): Matrix[E]
    Definition Classes
    TraversableLike → GenTraversableLike
  40. def elemIterator: Iterator[E]
  41. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  42. def equals(other: Any): Boolean
    Definition Classes
    Matrix → Equals → AnyRef → Any
  43. def exists(p: (Vector[E]) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  44. def filter(p: (Vector[E]) ⇒ Boolean): Matrix[E]
    Definition Classes
    TraversableLike → GenTraversableLike
  45. def filterNot(p: (Vector[E]) ⇒ Boolean): Matrix[E]
    Definition Classes
    TraversableLike → GenTraversableLike
  46. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  47. def find(p: (Vector[E]) ⇒ Boolean): Option[Vector[E]]
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. def flatMap[B, That](f: (Vector[E]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  49. def flatten[B](implicit asTraversable: (Vector[E]) ⇒ GenTraversableOnce[B]): Iterable[B]
    Definition Classes
    GenericTraversableTemplate
  50. def fold[A1 >: Vector[E]](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def foldLeft[B](z: B)(op: (B, Vector[E]) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  52. def foldRight[B](z: B)(op: (Vector[E], B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  53. def forall(p: (Vector[E]) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  54. def foreach[U](f: (Vector[E]) ⇒ U): Unit
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  55. def genericBuilder[B]: Builder[B, Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
  56. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  57. def groupBy[K](f: (Vector[E]) ⇒ K): Map[K, Matrix[E]]
    Definition Classes
    TraversableLike → GenTraversableLike
  58. def grouped(size: Int): Iterator[Matrix[E]]
    Definition Classes
    IterableLike
  59. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  60. def hashCode(): Int
    Definition Classes
    MatrixStore → AnyRef → Any
  61. def head: Vector[E]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  62. def headOption: Option[Vector[E]]
    Definition Classes
    TraversableLike → GenTraversableLike
  63. def height: Int

    returns

    the number of rows of this matrix

  64. def init: Matrix[E]
    Definition Classes
    TraversableLike → GenTraversableLike
  65. def inits: Iterator[Matrix[E]]
    Definition Classes
    TraversableLike
  66. def isEmpty: Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  67. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  68. def isSquare: Boolean

    returns

    if this is a square matrix (regarding to the concrete index range)

  69. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  70. def isZero: Boolean

    returns

    if this matrix contains no elements other than scal0

  71. def iterator: Iterator[Vector[E]]
    Definition Classes
    Matrix → IterableLike → GenIterableLike
  72. def last: Vector[E]
    Definition Classes
    TraversableLike → GenTraversableLike
  73. def lastOption: Option[Vector[E]]
    Definition Classes
    TraversableLike → GenTraversableLike
  74. def map[B, That](f: (Vector[E]) ⇒ B)(implicit bf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  75. def max[B >: Vector[E]](implicit cmp: Ordering[B]): Vector[E]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def maxBy[B](f: (Vector[E]) ⇒ B)(implicit cmp: Ordering[B]): Vector[E]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def min[B >: Vector[E]](implicit cmp: Ordering[B]): Vector[E]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def minBy[B](f: (Vector[E]) ⇒ B)(implicit cmp: Ordering[B]): Vector[E]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  83. def newBuilder: MatrixBuilder[Vector[E], Matrix[E]]
    Attributes
    protected[this]
    Definition Classes
    MatrixGenMatrixLike → GenericTraversableTemplate → TraversableLike → HasNewBuilder
  84. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  86. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  87. def par: ParIterable[Vector[E]]
    Definition Classes
    Parallelizable
  88. def parCombiner: Combiner[Vector[E], ParIterable[Vector[E]]]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  89. def partition(p: (Vector[E]) ⇒ Boolean): (Matrix[E], Matrix[E])
    Definition Classes
    TraversableLike → GenTraversableLike
  90. def product[B >: Vector[E]](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def reduce[A1 >: Vector[E]](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def reduceLeft[B >: Vector[E]](op: (B, Vector[E]) ⇒ B): B
    Definition Classes
    TraversableOnce
  93. def reduceLeftOption[B >: Vector[E]](op: (B, Vector[E]) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def reduceOption[A1 >: Vector[E]](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def reduceRight[B >: Vector[E]](op: (Vector[E], B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  96. def reduceRightOption[B >: Vector[E]](op: (Vector[E], B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def repr: Matrix[E]
    Definition Classes
    TraversableLike → GenTraversableLike
  98. def reversed: List[Vector[E]]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  99. def rowIterator: Iterator[Vector[E]]
  100. def rowSum(): Vector[E]

    Returns the vector of row sums of this matrix.

    Returns the vector of row sums of this matrix.

    returns

    the vector of row sums of this

  101. def sameElements[B >: Vector[E]](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  102. def scan[B >: Vector[E], That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  103. def scanLeft[B, That](z: B)(op: (B, Vector[E]) ⇒ B)(implicit bf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  104. def scanRight[B, That](z: B)(op: (Vector[E], B) ⇒ B)(implicit bf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  105. def seq: Iterable[Vector[E]]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  106. def shorten: Matrix[E]

    returns

    this matrix with a shortened index range stripped by leading and trailing zero-vector elements after shortening the vector elements itself (i.e., making concrete leading and trailing zeroes virtual in both dimensions)

    Definition Classes
    GenMatrixLike
    Since

    2.1.0

  107. def size: Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  109. def slice(from: Int, until: Int): Matrix[E]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  110. def sliding(size: Int, step: Int): Iterator[Matrix[E]]
    Definition Classes
    IterableLike
  111. def sliding(size: Int): Iterator[Matrix[E]]
    Definition Classes
    IterableLike
  112. def span(p: (Vector[E]) ⇒ Boolean): (Matrix[E], Matrix[E])
    Definition Classes
    TraversableLike → GenTraversableLike
  113. def splitAt(n: Int): (Matrix[E], Matrix[E])
    Definition Classes
    TraversableLike → GenTraversableLike
  114. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  115. def sum[B >: Vector[E]](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  117. def tail: Matrix[E]
    Definition Classes
    TraversableLike → GenTraversableLike
  118. def tails: Iterator[Matrix[E]]
    Definition Classes
    TraversableLike
  119. def take(n: Int): Matrix[E]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  120. def takeRight(n: Int): Matrix[E]
    Definition Classes
    IterableLike
  121. def takeWhile(p: (Vector[E]) ⇒ Boolean): Matrix[E]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  122. def thisCollection: Matrix[E]
    Attributes
    protected[this]
    Definition Classes
    GenMatrixLike → IterableLike → TraversableLike
  123. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Vector[E], Col[Vector[E]]]): Col[Vector[E]]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  124. def toArray[B >: Vector[E]](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toBuffer[B >: Vector[E]]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toCollection(repr: Matrix[E]): Matrix[E]
    Attributes
    protected[this]
    Definition Classes
    GenMatrixLike → IterableLike → TraversableLike
  127. def toIndexedSeq: IndexedSeq[Vector[E]]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def toIterable: Iterable[Vector[E]]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  129. def toIterator: Iterator[Vector[E]]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  130. def toList: List[Vector[E]]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  131. def toMap[T, U](implicit ev: <:<[Vector[E], (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def toSeq: Seq[Vector[E]]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def toSet[B >: Vector[E]]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def toStream: Stream[Vector[E]]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  135. def toString(): String
    Definition Classes
    Matrix → TraversableLike → AnyRef → Any
  136. def toTraversable: Traversable[Vector[E]]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  137. def toVector: scala.Vector[Vector[E]]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def transpose[B](implicit asTraversable: (Vector[E]) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  139. def transposed(): Matrix[E]

    Returns the transpose of this matrix..

    Returns the transpose of this matrix..

    returns

    thisT

    Definition Classes
    GenMatrixLike
  140. def unaryOp(f: (Vector[E]) ⇒ Vector[E]): Matrix[E]
    Attributes
    protected
    Definition Classes
    GenMatrixLike
  141. def unary_+(): Matrix[E]

    Returns identity.

    Returns identity. Can also be used to copy this.

    returns

    +this

    Definition Classes
    GenMatrixLike
  142. def unary_-(): Matrix[E]

    Returns negative complement of this.

    Returns negative complement of this.

    returns

    -this

    Definition Classes
    GenMatrixLike
  143. def unzip[A1, A2](implicit asPair: (Vector[E]) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    GenericTraversableTemplate
  144. def unzip3[A1, A2, A3](implicit asTriple: (Vector[E]) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    GenericTraversableTemplate
  145. def view(from: Int, until: Int): IterableView[Vector[E], Matrix[E]]
    Definition Classes
    IterableLike → TraversableLike
  146. def view: IterableView[Vector[E], Matrix[E]]
    Definition Classes
    IterableLike → TraversableLike
  147. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  148. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  149. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  150. def widen(index: Index2): Matrix[E]

    index

    the requested index ranges in both dimensions (the actual index ranges will be the union of this argument and the existing ones)

    returns

    this vector with widened index ranges extended by leading and trailing zero-vector elements according to index.dim1 and then widening the vector elements itself according to index.dim2 (i.e., in both dimensions adding concrete leading and trailing zeroes that were virtual before)

    Definition Classes
    GenMatrixLike
    Since

    2.1.0

  151. def width: Int

    returns

    the number of columns of this matrix

  152. def withFilter(p: (Vector[E]) ⇒ Boolean): FilterMonadic[Vector[E], Matrix[E]]
    Definition Classes
    TraversableLike → FilterMonadic
  153. def zip[A1 >: Vector[E], B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Matrix[E], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  154. def zipAll[B, A1 >: Vector[E], That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Matrix[E], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  155. def zipWithIndex[A1 >: Vector[E], That](implicit bf: CanBuildFrom[Matrix[E], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  156. def ~~(other: Matrix[E]): Boolean

    Checks if this matrix is similar to the other one in terms of stripping by leading and trailing zero elements in both dimensions, respectively.

    Checks if this matrix is similar to the other one in terms of stripping by leading and trailing zero elements in both dimensions, respectively.

    returns

    true if both matrices have the same elements in equal index positions, disregarding the concrete index ranges; false otherwise

    Since

    2.1.0

Inherited from Immutable

Inherited from MatrixStore[E]

Inherited from GenMatrixLike[E, Matrix[E]]

Inherited from Iterable[Vector[E]]

Inherited from IterableLike[Vector[E], Matrix[E]]

Inherited from Equals

Inherited from GenIterable[Vector[E]]

Inherited from GenIterableLike[Vector[E], Matrix[E]]

Inherited from Traversable[Vector[E]]

Inherited from GenTraversable[Vector[E]]

Inherited from TraversableLike[Vector[E], Matrix[E]]

Inherited from GenTraversableLike[Vector[E], Matrix[E]]

Inherited from Parallelizable[Vector[E], ParIterable[Vector[E]]]

Inherited from TraversableOnce[Vector[E]]

Inherited from GenTraversableOnce[Vector[E]]

Inherited from FilterMonadic[Vector[E], Matrix[E]]

Inherited from HasNewBuilder[Vector[E], Matrix[E]]

Inherited from AnyRef

Inherited from Any

Ungrouped