SingularValueDecompositionFeature

interface SingularValueDecompositionFeature<T : Any> : MatrixFeature

Matrices with this feature support SVD: a = u &middot; s &middot; v<sup>H</sup> where a is the owning matrix.

Parameters

T

the type of matrices' items.

Functions

equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): String

Properties

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.