Packages

object DenseMatrix extends MatrixConstructors[DenseMatrix] with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DenseMatrix
  2. Serializable
  3. MatrixConstructors
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[R, V](rows: R*)(implicit rl: LiteralRow[R, V], man: ClassTag[V], zero: Zero[V]): DenseMatrix[V]

    Static constructor for a literal matrix.

    Static constructor for a literal matrix.

    Definition Classes
    MatrixConstructors
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. implicit def canCreateZeros[T](implicit arg0: ClassTag[T], arg1: Zero[T]): CanCreateZeros[DenseMatrix[T], (Int, Int)]
    Definition Classes
    MatrixConstructors
  7. implicit def canCreateZerosLike[V](implicit arg0: ClassTag[V], arg1: Zero[V]): CanCreateZerosLike[DenseMatrix[V], DenseMatrix[V]]
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  9. def create[V](rows: Int, cols: Int, data: Array[V], offset: Int, majorStride: Int, isTranspose: Boolean = false): DenseMatrix[V]

    Creates a new DenseMatrix using the provided array (not making a copy!).

    Creates a new DenseMatrix using the provided array (not making a copy!). In generic contexts, prefer to use this (or the other create methd) instead of new DenseMatrix[V](rows, cols, data), which in general won't give specialized implementations.

  10. def create[V](rows: Int, cols: Int, data: Array[V])(implicit arg0: Zero[V]): DenseMatrix[V]

    Creates a new DenseMatrix using the provided array (not making a copy!).

    Creates a new DenseMatrix using the provided array (not making a copy!). In generic contexts, prefer to use this (or the other create methd) instead of new DenseMatrix[V](rows, cols, data), which in general won't give specialized implementations.

    Definition Classes
    DenseMatrixMatrixConstructors
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def eye[V](dim: Int)(implicit arg0: ClassTag[V], arg1: Zero[V], arg2: Semiring[V]): DenseMatrix[V]

    Creates a square diagonal array of size dim x dim, with 1's along the diagonal.

  14. def fill[V](rows: Int, cols: Int)(v: => V)(implicit arg0: ClassTag[V], arg1: Zero[V]): DenseMatrix[V]
    Definition Classes
    MatrixConstructors
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  17. def horzcat[M, V](matrices: M*)(implicit ev: <:<[M, Matrix[V]], opset: operators.OpSet.InPlaceImpl2[DenseMatrix[V], M], vman: ClassTag[V], zero: Zero[V]): DenseMatrix[V]

    Horizontally tiles some matrices.

    Horizontally tiles some matrices. They must have the same number of rows

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  22. def ones[V](rows: Int, cols: Int)(implicit arg0: ClassTag[V], arg1: Zero[V], arg2: Semiring[V]): DenseMatrix[V]

    Creates a matrix of all ones.

    Creates a matrix of all ones.

    Definition Classes
    DenseMatrixMatrixConstructors
  23. def rand[T](rows: Int, cols: Int, rand: Rand[T] = Rand.uniform)(implicit arg0: ClassTag[T], arg1: Zero[T]): DenseMatrix[T]
    Definition Classes
    MatrixConstructors
  24. implicit def scalarOf[T]: ScalarOf[DenseMatrix[T], T]
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def tabulate[V](rows: Int, cols: Int)(f: (Int, Int) => V)(implicit arg0: ClassTag[V], arg1: Zero[V]): DenseMatrix[V]
    Definition Classes
    MatrixConstructors
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. def vertcat[V](matrices: DenseMatrix[V]*)(implicit opset: operators.OpSet.InPlaceImpl2[DenseMatrix[V], DenseMatrix[V]], vman: ClassTag[V], zero: Zero[V]): DenseMatrix[V]

    Vertically tiles some matrices.

    Vertically tiles some matrices. They must have the same number of columns

  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. def zeros[V](rows: Int, cols: Int)(implicit arg0: ClassTag[V], arg1: Zero[V]): DenseMatrix[V]

    The standard way to create an empty matrix, size is rows * cols

    The standard way to create an empty matrix, size is rows * cols

    Definition Classes
    DenseMatrixMatrixConstructors
  33. object FrobeniusInnerProductDenseMatrixSpace

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped