CholeskyDecompositionFeature

interface CholeskyDecompositionFeature<T : Any> : MatrixFeature

Matrices with this feature support Cholesky factorization: a = l &middot; l<sup>H</sup> where a is the owning matrix.

Parameters

T

the type of matrices' items.

Functions

equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): String

Properties

l
Link copied to clipboard
common
abstract val l: Matrix<T>
The triangular matrix in this decomposition.