EjmlLinearSpaceDSCC

object EjmlLinearSpaceDSCC : EjmlLinearSpace<Double, DoubleField, DMatrixSparseCSC>

EjmlLinearSpace implementation based on CommonOps_DSCC, DecompositionFactory_DSCC operations and DMatrixSparseCSC matrices.

Functions

Link copied to clipboard
open override fun buildMatrix(rows: Int, columns: Int, initializer: DoubleField.(i: Int, j: Int) -> Double): EjmlDoubleMatrix<DMatrixSparseCSC>
Link copied to clipboard
open override fun buildVector(size: Int, initializer: DoubleField.(Int) -> Double): EjmlDoubleVector<DMatrixSparseCSC>
Link copied to clipboard
open override fun <F : StructureFeature> computeFeature(structure: Matrix<Double>, type: KClass<out F>): F?
Link copied to clipboard
open infix override fun Matrix<Double>.dot(other: Matrix<Double>): EjmlDoubleMatrix<DMatrixSparseCSC>
open infix override fun Matrix<Double>.dot(vector: Point<Double>): EjmlDoubleVector<DMatrixSparseCSC>
Link copied to clipboard
fun EjmlMatrix<Double, *>.inverse(): Structure2D<Double>
Link copied to clipboard
open operator override fun Matrix<Double>.minus(other: Matrix<Double>): EjmlDoubleMatrix<DMatrixSparseCSC>
open operator override fun Point<Double>.minus(other: Point<Double>): EjmlDoubleVector<DMatrixSparseCSC>
Link copied to clipboard
open operator override fun Matrix<Double>.plus(other: Matrix<Double>): EjmlDoubleMatrix<DMatrixSparseCSC>
open operator override fun Point<Double>.plus(other: Point<Double>): EjmlDoubleVector<DMatrixSparseCSC>
Link copied to clipboard
fun solve(a: Matrix<Double>, b: Matrix<Double>): EjmlDoubleMatrix<DMatrixSparseCSC>
fun solve(a: Matrix<Double>, b: Point<Double>): EjmlDoubleVector<DMatrixSparseCSC>

Solves for x in the following equation: x = a-1 · b.

Link copied to clipboard
open operator override fun Double.times(m: Matrix<Double>): EjmlDoubleMatrix<DMatrixSparseCSC>
open operator override fun Double.times(v: Point<Double>): EjmlDoubleVector<DMatrixSparseCSC>
open operator override fun Matrix<Double>.times(value: Double): EjmlDoubleMatrix<DMatrixSparseCSC>
open operator override fun Point<Double>.times(value: Double): EjmlDoubleVector<DMatrixSparseCSC>
Link copied to clipboard
open override fun Matrix<Double>.toEjml(): EjmlDoubleMatrix<DMatrixSparseCSC>

Converts this matrix to EJML one.

open override fun Point<Double>.toEjml(): EjmlDoubleVector<DMatrixSparseCSC>

Converts this vector to EJML one.

Link copied to clipboard
open operator override fun Matrix<Double>.unaryMinus(): Matrix<Double>
open operator override fun Point<Double>.unaryMinus(): EjmlDoubleVector<DMatrixSparseCSC>

Properties

Link copied to clipboard
open override val elementAlgebra: DoubleField

The DoubleField reference.

Sources

Link copied to clipboard