SingularValueDecompositionFeature

interface SingularValueDecompositionFeature<out T : Any> : MatrixFeature

Matrices with this feature support SVD: a = u &middot; s &middot; vH 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
s
Link copied to clipboard
common
abstract val s: Matrix<T>
The matrix in this decomposition.
singularValues
Link copied to clipboard
common
abstract val singularValues: Point<T>
The buffer of singular values of this SVD.
u
Link copied to clipboard
common
abstract val u: Matrix<T>
The matrix in this decomposition.
v
Link copied to clipboard
common
abstract val v: Matrix<T>
The matrix in this decomposition.

Sources

common source
Link copied to clipboard