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 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

  • DoubleOps
  • DoubleVector
  • DoubleVectorFactory
  • IntOps
  • IntVector
  • IntVectorFactory
  • MatrixFactory
  • NumericByteVectorFactory
  • NumericCharVectorFactory
  • NumericDoubleVectorFactory
  • NumericFloatVectorFactory
  • NumericIntVectorFactory
  • NumericLongVectorFactory
  • NumericOps
  • NumericShortVectorFactory
  • NumericVector
  • RowMatrix
  • RowMatrixFactory
  • ScalarMap
  • ScalarSeq
  • Scalars
  • SparseDoubleVector
  • SparseIntVector
  • SparseNumericVector
  • SparseRowMatrix
  • VectorFactory

abstract class RowMatrix[E] extends Matrix[E] with MatrixLike[E, Matrix[E]]

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

Instance Constructors

  1. new RowMatrix(rowStart: Int, rows: Seq[Vector[E]])(implicit elemTag: ClassTag[E])
    Attributes
    protected

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. abstract def index: Index2
    Definition Classes
    MatrixStore
  5. 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
    MatrixLikeGenMatrixLike
  4. def *[That >: Matrix[E] <: Matrix[E]](b: That)(implicit vbf: VectorCanBuildFrom[Vector[E], E, Vector[E]], mbf: MatrixCanBuildFrom[RowMatrix.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
    MatrixLikeGenMatrixLike
  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[RowMatrix.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[RowMatrix.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
    MatrixLikeGenMatrixLike
  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
    MatrixLikeGenMatrixLike
  23. def binaryOp[That >: Matrix[E] <: Matrix[E]](f: (Vector[E], Vector[E]) ⇒ Vector[E], b: That)(implicit bf: MatrixCanBuildFrom[RowMatrix.this.type, Vector[E], That]): That
    Attributes
    protected
    Definition Classes
    MatrixLikeGenMatrixLike
  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]]
    Definition Classes
    Matrix
  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

    Definition Classes
    Matrix
  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]
    Definition Classes
    Matrix
  41. implicit val elemTag: ClassTag[E]
    Attributes
    protected
    Definition Classes
    RowMatrixMatrixStoreGenMatrixLike
  42. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  43. def equals(other: Any): Boolean
    Definition Classes
    Matrix → Equals → AnyRef → Any
  44. def exists(p: (Vector[E]) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  45. def filter(p: (Vector[E]) ⇒ Boolean): Matrix[E]
    Definition Classes
    TraversableLike → GenTraversableLike
  46. def filterNot(p: (Vector[E]) ⇒ Boolean): Matrix[E]
    Definition Classes
    TraversableLike → GenTraversableLike
  47. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  48. def find(p: (Vector[E]) ⇒ Boolean): Option[Vector[E]]
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  49. def flatMap[B, That](f: (Vector[E]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  50. def flatten[B](implicit asTraversable: (Vector[E]) ⇒ GenTraversableOnce[B]): Iterable[B]
    Definition Classes
    GenericTraversableTemplate
  51. def fold[A1 >: Vector[E]](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  52. def foldLeft[B](z: B)(op: (B, Vector[E]) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  53. def foldRight[B](z: B)(op: (Vector[E], B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  54. def forall(p: (Vector[E]) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  55. def foreach[U](f: (Vector[E]) ⇒ U): Unit
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  56. def genericBuilder[B]: Builder[B, Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
  57. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  58. def groupBy[K](f: (Vector[E]) ⇒ K): Map[K, Matrix[E]]
    Definition Classes
    TraversableLike → GenTraversableLike
  59. def grouped(size: Int): Iterator[Matrix[E]]
    Definition Classes
    IterableLike
  60. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  61. def hashCode(): Int
    Definition Classes
    MatrixStore → AnyRef → Any
  62. def head: Vector[E]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  63. def headOption: Option[Vector[E]]
    Definition Classes
    TraversableLike → GenTraversableLike
  64. def height: Int

    returns

    the number of rows of this matrix

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

    returns

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

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

    returns

    if this matrix contains no elements other than scal0

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

    Definition Classes
    Matrix
  103. val rows: Seq[Vector[E]]
    Attributes
    protected
  104. def sameElements[B >: Vector[E]](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  105. def scan[B >: Vector[E], That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  106. def scanLeft[B, That](z: B)(op: (B, Vector[E]) ⇒ B)(implicit bf: CanBuildFrom[Matrix[E], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  107. 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.

  108. def seq: Iterable[Vector[E]]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  109. 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
    MatrixLikeGenMatrixLike
    Since

    2.1.0

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

  142. def transposed(): Matrix[E]

    Returns the transpose of this matrix..

    Returns the transpose of this matrix..

    returns

    thisT

    Definition Classes
    MatrixLikeGenMatrixLike
  143. def unaryOp(f: (Vector[E]) ⇒ Vector[E]): Matrix[E]
    Attributes
    protected
    Definition Classes
    MatrixLikeGenMatrixLike
  144. def unary_+(): Matrix[E]

    Returns identity.

    Returns identity. Can also be used to copy this.

    returns

    +this

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

    Returns negative complement of this.

    Returns negative complement of this.

    returns

    -this

    Definition Classes
    GenMatrixLike
  146. def unzip[A1, A2](implicit asPair: (Vector[E]) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    GenericTraversableTemplate
  147. def unzip3[A1, A2, A3](implicit asTriple: (Vector[E]) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    GenericTraversableTemplate
  148. def view(from: Int, until: Int): IterableView[Vector[E], Matrix[E]]
    Definition Classes
    IterableLike → TraversableLike
  149. def view: IterableView[Vector[E], Matrix[E]]
    Definition Classes
    IterableLike → TraversableLike
  150. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  151. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  152. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  153. 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
    MatrixLikeGenMatrixLike
    Since

    2.1.0

  154. def width: Int

    returns

    the number of columns of this matrix

    Definition Classes
    Matrix
  155. def withFilter(p: (Vector[E]) ⇒ Boolean): FilterMonadic[Vector[E], Matrix[E]]
    Definition Classes
    TraversableLike → FilterMonadic
  156. def zip[A1 >: Vector[E], B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Matrix[E], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  157. 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
  158. def zipWithIndex[A1 >: Vector[E], That](implicit bf: CanBuildFrom[Matrix[E], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  159. 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

    Definition Classes
    Matrix
    Since

    2.1.0

Inherited from MatrixLike[E, Matrix[E]]

Inherited from Matrix[E]

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