Class GenericSVD
java.lang.Object
org.episteme.core.mathematics.linearalgebra.matrices.solvers.GenericSVD
Generic Singular Value Decomposition (SVD).
This implementation uses the relation A^H*A = V*S^2*V^H. U is computed by A*V*diag(1/S).
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <E> SVDResult<E> decompose(Matrix<E> matrix, Field<E> field, LinearAlgebraProvider<E> provider)
-
Constructor Details
-
GenericSVD
public GenericSVD()
-
-
Method Details
-
decompose
public static <E> SVDResult<E> decompose(Matrix<E> matrix, Field<E> field, LinearAlgebraProvider<E> provider)
-