QRDecompositionFeature

interface QRDecompositionFeature<out T : Any> : MatrixFeature

Matrices with this feature support QR factorization: a = q &middot; r 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
q
Link copied to clipboard
common
abstract val q: Matrix<T>
The orthogonal matrix in this decomposition.
r
Link copied to clipboard
common
abstract val r: Matrix<T>
The upper triangular matrix in this decomposition.

Sources

common source
Link copied to clipboard