QRDecompositionFeature

interface QRDecompositionFeature<out T : Any> : MatrixFeature

Matrices with this feature support QR factorization: a = q · r 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 q: Matrix<T>

The orthogonal matrix in this decomposition. It may have OrthogonalFeature.

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

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

Sources

Link copied to clipboard