LupDecompositionFeature

interface LupDecompositionFeature<out T : Any> : MatrixFeature

Matrices with this feature support LU factorization with partial pivoting: p &middot; a = l &middot; u where a is the owning matrix.

Parameters

T

the type of matrices' items.

Properties

key
Link copied to clipboard
common
open val key: FeatureKey<StructureFeature>
A key used for extraction
l
Link copied to clipboard
common
abstract val l: Matrix<T>
The lower triangular matrix in this decomposition.
p
Link copied to clipboard
common
abstract val p: Matrix<T>
The permutation matrix in this decomposition.
u
Link copied to clipboard
common
abstract val u: Matrix<T>
The upper triangular matrix in this decomposition.

Inheritors

LupDecomposition
Link copied to clipboard

Sources

common source
Link copied to clipboard