Trait/Object

de.h2b.scala.lib.math.linalg

Matrix

Related Docs: object Matrix | package linalg

Permalink

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.

Linear Supertypes
Known Subclasses
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]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Abstract Value Members

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

    Permalink

    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]

    Permalink

    j

    the column index

    returns

    the column vector with index j

    Definition Classes
    MatrixStore
  3. abstract def dataHashCode: Int

    Permalink
    Attributes
    protected
    Definition Classes
    MatrixStore
  4. implicit abstract val elemTag: ClassTag[E]

    Permalink
    Attributes
    protected
    Definition Classes
    MatrixStore
  5. abstract def index: Index2

    Permalink
    Definition Classes
    MatrixStore
  6. abstract def row(i: Int): Vector[E]

    Permalink

    i

    the row index

    returns

    the row vector with index i

    Definition Classes
    MatrixStore

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def *[That <: Vector[E]](v: That)(implicit vbf: VectorCanBuildFrom[That, E, That]): That

    Permalink

    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

    Permalink

    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]

    Permalink

    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

    Permalink

    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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  8. def ++:[B >: Vector[E], That](that: Traversable[B])(implicit bf: CanBuildFrom[Matrix[E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  9. def ++:[B >: Vector[E], That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Matrix[E], B, That]): That

    Permalink
    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

    Permalink

    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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  12. def :\[B](z: B)(op: (Vector[E], B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def @@(at: (Int, Int)): Matrix[E]

    Permalink

    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

    Permalink
    Definition Classes
    TraversableOnce
  16. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  17. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  18. def aggregate[B](z: ⇒ B)(seqop: (B, Vector[E]) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  19. def apply(i: Int): Vector[E]

    Permalink

    i

    the row index

    returns

    the row vector with index i

    Definition Classes
    MatrixStore
  20. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  21. def atCol(at: Int): Matrix[E]

    Permalink

    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]

    Permalink

    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

    Permalink
    Attributes
    protected
    Definition Classes
    GenMatrixLike
  24. def canEqual(other: Any): Boolean

    Permalink
    Definition Classes
    Matrix → IterableLike → Equals
  25. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def colIterator: Iterator[Vector[E]]

    Permalink
  27. def colSum(): Vector[E]

    Permalink

    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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  29. def collectFirst[B](pf: PartialFunction[Vector[E], B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  30. def companion: GenericCompanion[Iterable]

    Permalink
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  31. def copyToArray[B >: Vector[E]](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  32. def copyToArray[B >: Vector[E]](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  33. def copyToArray[B >: Vector[E]](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  34. def copyToBuffer[B >: Vector[E]](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  35. def count(p: (Vector[E]) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  36. final val dataHashStart: Int(1)

    Permalink
    Attributes
    protected
    Definition Classes
    MatrixStore
  37. def drop(n: Int): Matrix[E]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  38. def dropRight(n: Int): Matrix[E]

    Permalink
    Definition Classes
    IterableLike
  39. def dropWhile(p: (Vector[E]) ⇒ Boolean): Matrix[E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  40. def elemIterator: Iterator[E]

    Permalink
  41. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  42. def equals(other: Any): Boolean

    Permalink
    Definition Classes
    Matrix → Equals → AnyRef → Any
  43. def exists(p: (Vector[E]) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  44. def filter(p: (Vector[E]) ⇒ Boolean): Matrix[E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  45. def filterNot(p: (Vector[E]) ⇒ Boolean): Matrix[E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  46. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  47. def find(p: (Vector[E]) ⇒ Boolean): Option[Vector[E]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. def flatMap[B, That](f: (Vector[E]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Matrix[E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  49. def flatten[B](implicit asTraversable: (Vector[E]) ⇒ GenTraversableOnce[B]): Iterable[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  50. def fold[A1 >: Vector[E]](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def foldLeft[B](z: B)(op: (B, Vector[E]) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  52. def foldRight[B](z: B)(op: (Vector[E], B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  53. def forall(p: (Vector[E]) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  54. def foreach[U](f: (Vector[E]) ⇒ U): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  55. def genericBuilder[B]: Builder[B, Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  56. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  57. def groupBy[K](f: (Vector[E]) ⇒ K): Map[K, Matrix[E]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  58. def grouped(size: Int): Iterator[Matrix[E]]

    Permalink
    Definition Classes
    IterableLike
  59. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  60. def hashCode(): Int

    Permalink
    Definition Classes
    MatrixStore → AnyRef → Any
  61. def head: Vector[E]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  62. def headOption: Option[Vector[E]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  63. def height: Int

    Permalink

    returns

    the number of rows of this matrix

  64. def init: Matrix[E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  65. def inits: Iterator[Matrix[E]]

    Permalink
    Definition Classes
    TraversableLike
  66. def isEmpty: Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  67. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  68. def isSquare: Boolean

    Permalink

    returns

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

  69. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  70. def isZero: Boolean

    Permalink

    returns

    if this matrix contains no elements other than scal0

  71. def iterator: Iterator[Vector[E]]

    Permalink
    Definition Classes
    Matrix → IterableLike → GenIterableLike
  72. def last: Vector[E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  73. def lastOption: Option[Vector[E]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  74. def map[B, That](f: (Vector[E]) ⇒ B)(implicit bf: CanBuildFrom[Matrix[E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  75. def max[B >: Vector[E]](implicit cmp: Ordering[B]): Vector[E]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def maxBy[B](f: (Vector[E]) ⇒ B)(implicit cmp: Ordering[B]): Vector[E]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def min[B >: Vector[E]](implicit cmp: Ordering[B]): Vector[E]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def minBy[B](f: (Vector[E]) ⇒ B)(implicit cmp: Ordering[B]): Vector[E]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  83. def newBuilder: MatrixBuilder[Vector[E], Matrix[E]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    MatrixGenMatrixLike → GenericTraversableTemplate → TraversableLike → HasNewBuilder
  84. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  86. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  87. def par: ParIterable[Vector[E]]

    Permalink
    Definition Classes
    Parallelizable
  88. def parCombiner: Combiner[Vector[E], ParIterable[Vector[E]]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  89. def partition(p: (Vector[E]) ⇒ Boolean): (Matrix[E], Matrix[E])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  90. def product[B >: Vector[E]](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def reduce[A1 >: Vector[E]](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def reduceLeft[B >: Vector[E]](op: (B, Vector[E]) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  93. def reduceLeftOption[B >: Vector[E]](op: (B, Vector[E]) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def reduceOption[A1 >: Vector[E]](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def reduceRight[B >: Vector[E]](op: (Vector[E], B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  96. def reduceRightOption[B >: Vector[E]](op: (Vector[E], B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def repr: Matrix[E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  98. def reversed: List[Vector[E]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  99. def rowIterator: Iterator[Vector[E]]

    Permalink
  100. def rowSum(): Vector[E]

    Permalink

    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

    Permalink
    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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  103. def scanLeft[B, That](z: B)(op: (B, Vector[E]) ⇒ B)(implicit bf: CanBuildFrom[Matrix[E], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  104. def scanRight[B, That](z: B)(op: (Vector[E], B) ⇒ B)(implicit bf: CanBuildFrom[Matrix[E], B, That]): That

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

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

    Permalink

    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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def slice(from: Int, until: Int): Matrix[E]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  109. def sliding(size: Int, step: Int): Iterator[Matrix[E]]

    Permalink
    Definition Classes
    IterableLike
  110. def sliding(size: Int): Iterator[Matrix[E]]

    Permalink
    Definition Classes
    IterableLike
  111. def span(p: (Vector[E]) ⇒ Boolean): (Matrix[E], Matrix[E])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  112. def splitAt(n: Int): (Matrix[E], Matrix[E])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  113. def stringPrefix: String

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  114. def sum[B >: Vector[E]](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  116. def tail: Matrix[E]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def tails: Iterator[Matrix[E]]

    Permalink
    Definition Classes
    TraversableLike
  118. def take(n: Int): Matrix[E]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  119. def takeRight(n: Int): Matrix[E]

    Permalink
    Definition Classes
    IterableLike
  120. def takeWhile(p: (Vector[E]) ⇒ Boolean): Matrix[E]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  121. def thisCollection: Matrix[E]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    GenMatrixLike → IterableLike → TraversableLike
  122. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Vector[E], Col[Vector[E]]]): Col[Vector[E]]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  123. def toArray[B >: Vector[E]](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def toBuffer[B >: Vector[E]]: Buffer[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toCollection(repr: Matrix[E]): Matrix[E]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    GenMatrixLike → IterableLike → TraversableLike
  126. def toIndexedSeq: IndexedSeq[Vector[E]]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def toIterable: Iterable[Vector[E]]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  128. def toIterator: Iterator[Vector[E]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  129. def toList: List[Vector[E]]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def toMap[T, U](implicit ev: <:<[Vector[E], (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  131. def toSeq: Seq[Vector[E]]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def toSet[B >: Vector[E]]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def toStream: Stream[Vector[E]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  134. def toString(): String

    Permalink
    Definition Classes
    Matrix → TraversableLike → AnyRef → Any
  135. def toTraversable: Traversable[Vector[E]]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  136. def toVector: scala.Vector[Vector[E]]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  137. def transpose[B](implicit asTraversable: (Vector[E]) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  138. def transposed(): Matrix[E]

    Permalink

    Returns the transpose of this matrix..

    Returns the transpose of this matrix..

    returns

    thisT

    Definition Classes
    GenMatrixLike
  139. def unaryOp(f: (Vector[E]) ⇒ Vector[E]): Matrix[E]

    Permalink
    Attributes
    protected
    Definition Classes
    GenMatrixLike
  140. def unary_+(): Matrix[E]

    Permalink

    Returns identity.

    Returns identity. Can also be used to copy this.

    returns

    +this

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

    Permalink

    Returns negative complement of this.

    Returns negative complement of this.

    returns

    -this

    Definition Classes
    GenMatrixLike
  142. def unzip[A1, A2](implicit asPair: (Vector[E]) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  143. def unzip3[A1, A2, A3](implicit asTriple: (Vector[E]) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  144. def view(from: Int, until: Int): IterableView[Vector[E], Matrix[E]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  145. def view: IterableView[Vector[E], Matrix[E]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  146. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  149. def widen(index: Index2): Matrix[E]

    Permalink

    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

  150. def width: Int

    Permalink

    returns

    the number of columns of this matrix

  151. def withFilter(p: (Vector[E]) ⇒ Boolean): FilterMonadic[Vector[E], Matrix[E]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  152. def zip[A1 >: Vector[E], B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Matrix[E], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  153. def zipAll[B, A1 >: Vector[E], That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Matrix[E], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  154. def zipWithIndex[A1 >: Vector[E], That](implicit bf: CanBuildFrom[Matrix[E], (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  155. def ~~(other: Matrix[E]): Boolean

    Permalink

    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