Packages

object Mat

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Mat
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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[T](values: Vec[T]*)(implicit arg0: ST[T]): Mat[T]

    Factory method to create a Mat from a sequence of Vec.

    Factory method to create a Mat from a sequence of Vec. Each inner Vec will become a column of the new Mat instance.

    T

    Type of elements in array

    values

    Sequence of Vec, each of which is to be a column

  5. def apply[T](values: Array[Vec[T]])(implicit arg0: ST[T]): Mat[T]

    Factory method to create a Mat from an array of Vec.

    Factory method to create a Mat from an array of Vec. Each inner Vec will become a column of the new Mat instance.

    T

    Type of elements in Vec

    values

    Array of Vec, each of which is to be a column

  6. def apply[T](values: Array[Array[T]])(implicit arg0: ST[T]): Mat[T]

    Factory method to create a Mat from an array of arrays.

    Factory method to create a Mat from an array of arrays. Each inner array will become a column of the new Mat instance.

    T

    Type of elements in inner array

    values

    Array of arrays, each of which is to be a column

  7. def apply[T](numRows: Int, numCols: Int)(implicit st: ST[T]): Mat[T]

    Factory method to create an zero Mat (all zeros)

    Factory method to create an zero Mat (all zeros)

    T

    Type of elements in Mat

    numRows

    Number of rows in Mat

    numCols

    Number of cols in Mat

  8. def apply[T](rows: Int, cols: Int, vec: Vec[T])(implicit st: ST[T]): Mat[T]
  9. def apply[T](rows: Int, cols: Int, arr: Array[T])(implicit st: ST[T]): Mat[T]

    Factory method to create a new Mat from raw materials

    Factory method to create a new Mat from raw materials

    T

    Type of data in array

    rows

    Number of rows in Mat

    cols

    Number of cols in Mat

    arr

    A 1D array of backing data in row-major order

  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  12. def empty[T](implicit arg0: ST[T]): Mat[T]

    Factory method to create an empty Mat

    Factory method to create an empty Mat

    T

    Type of Mat

  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def ident(n: Int): Mat[Double]

    Factory method to create an identity matrix; ie with ones along the diagonal and zeros off-diagonal.

    Factory method to create an identity matrix; ie with ones along the diagonal and zeros off-diagonal.

    n

    The width of the square matrix

  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped