dk.bayes.math.linear

Matrix

case class Matrix(matrix: SimpleMatrix) extends Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Matrix
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Matrix(matrix: SimpleMatrix)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def *(d: Double): Matrix

  5. def *(m: Matrix): Matrix

  6. def +(d: Double): Matrix

  7. def +(m: Matrix): Matrix

  8. def -(d: Double): Matrix

  9. def -(m: Matrix): Matrix

  10. def :*(m: Matrix): Matrix

  11. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  13. def apply(index: Int): Double

  14. def apply(row: Int, col: Int): Double

  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def at(index: Int): Double

  17. def chol(): Matrix

  18. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. def column(columnIndex: Int): Matrix

  20. def combine(insertRow: Int, insertCol: Int, m: Matrix): Matrix

  21. def copy(): Matrix

  22. def det(): Double

  23. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. def extractColumn(colIndex: Int): Matrix

  25. def extractDiag(): Matrix

  26. def extractMatrix(y0: Int, y1: Int, x0: Int, x1: Int): Matrix

  27. def extractRow(rowIndex: Int): Matrix

  28. def filterNot(rowIndex: Int, columnIndex: Int): Matrix

  29. def filterNotColumn(columnIndex: Int): Matrix

  30. def filterNotRow(rowIndex: Int): Matrix

  31. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  32. def foreach(f: (Int, Int) ⇒ Unit): Unit

    Iterates over all matrix elements row by row.

    Iterates over all matrix elements row by row.

    f

    (rowId, colId) => Unit

  33. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  34. def insertIntoThis(insertRow: Int, insertCol: Int, m: Matrix): Unit

  35. def inv(): Matrix

  36. def isIdentical(a: Matrix, tol: Double): Boolean

  37. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  38. val matrix: SimpleMatrix

  39. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  40. def negative(): Matrix

  41. final def notify(): Unit

    Definition Classes
    AnyRef
  42. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  43. def numCols(): Int

  44. def numRows(): Int

  45. def reshape(row: Int, col: Int): Matrix

  46. def row(columnIndex: Int): Matrix

  47. def set(row: Int, col: Int, value: Double): Unit

  48. def size(): Int

  49. def svd(): (Matrix, Matrix, Matrix, Int)

    Returns svd [U,W,V, rank] matrix decomposition.

  50. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  51. def t(): Matrix

  52. def toArray(): Array[Double]

  53. def toString(): String

    Definition Classes
    Matrix → AnyRef → Any
  54. def trace(): Double

  55. def transpose(): Matrix

  56. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped