Matrix

class Matrix(data: Array<DoubleArray>)

Represents a matrix of doubles. Internally represented as a SimpleMatrix from EJML.

Constructors

Link copied to clipboard
constructor(data: DoubleArray, type1d: TYPE_1D = TYPE_1D.ROW)
constructor(data: Array<DoubleArray>)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
operator fun get(i: Int, j: Int): Double
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
operator fun set(i: Int, j: Int, value: Double)
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard