LupDecompositionFeature

interface LupDecompositionFeature<out T : Any> : MatrixFeature

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

Parameters

T

the type of matrices' items.

Properties

Link copied to clipboard
open val key: FeatureKey<StructureFeature>

A key used for extraction

Link copied to clipboard
abstract val l: Matrix<T>

The lower triangular matrix in this decomposition. It may have LFeature.

Link copied to clipboard
abstract val p: Matrix<T>

The permutation matrix in this decomposition.

Link copied to clipboard
abstract val u: Matrix<T>

The upper triangular matrix in this decomposition. It may have UFeature.

Inheritors

Link copied to clipboard

Sources

Link copied to clipboard