Uses of Interface
org.ejml.interfaces.decomposition.SingularValueDecomposition_F32
Packages that use SingularValueDecomposition_F32
Package
Description
-
Uses of SingularValueDecomposition_F32 in org.ejml.dense.row
Methods in org.ejml.dense.row with parameters of type SingularValueDecomposition_F32Modifier and TypeMethodDescriptionstatic intSingularOps_FDRM.nullity(SingularValueDecomposition_F32<?> svd) Extracts the nullity of a matrix using a preexisting decomposition and default threshold.static intSingularOps_FDRM.nullity(SingularValueDecomposition_F32<?> svd, float threshold) Extracts the nullity of a matrix using a preexisting decomposition.static FMatrixRMajSingularOps_FDRM.nullSpace(SingularValueDecomposition_F32<FMatrixRMaj> svd, @Nullable FMatrixRMaj nullSpace, float tol) Returns the null-space from the singular value decomposition.static FMatrixRMajSingularOps_FDRM.nullVector(SingularValueDecomposition_F32<FMatrixRMaj> svd, boolean isRight, @Nullable FMatrixRMaj nullVector) The vector associated will the smallest singular value is returned as the null space of the decomposed system.static intSingularOps_FDRM.rank(SingularValueDecomposition_F32<?> svd) Extracts the rank of a matrix using a preexisting decomposition and default threshold.static intSingularOps_FDRM.rank(SingularValueDecomposition_F32<?> svd, float threshold) Extracts the rank of a matrix using a preexisting decomposition.static floatSingularOps_FDRM.singularThreshold(SingularValueDecomposition_F32<?> svd) Returns a reasonable threshold for singular values.
tol = max (size (A)) * largest sigma * eps;static floatSingularOps_FDRM.singularThreshold(SingularValueDecomposition_F32<?> svd, float tolerance) -
Uses of SingularValueDecomposition_F32 in org.ejml.dense.row.decomposition.svd
Classes in org.ejml.dense.row.decomposition.svd that implement SingularValueDecomposition_F32Modifier and TypeClassDescriptionclassWraps around aSingularValueDecompositionand ensures that the input is not modified.classComputes the Singular value decomposition of a matrix using the implicit QR algorithm for singular value decomposition.classConcurrent version ofSvdImplicitQrDecompose_FDRMConstructors in org.ejml.dense.row.decomposition.svd with parameters of type SingularValueDecomposition_F32 -
Uses of SingularValueDecomposition_F32 in org.ejml.dense.row.factory
Methods in org.ejml.dense.row.factory that return SingularValueDecomposition_F32Modifier and TypeMethodDescriptionDecompositionFactory_FDRM.svd(boolean needU, boolean needV, boolean compact) Returns aSingularValueDecompositionthat is NOT optimized for any specified matrix size.DecompositionFactory_FDRM.svd(int numRows, int numCols, boolean needU, boolean needV, boolean compact) Returns aSingularValueDecompositionthat has been optimized for the specified matrix size.DecompositionFactory_MT_FDRM.svd(boolean needU, boolean needV, boolean compact) Returns aSingularValueDecompositionthat is NOT optimized for any specified matrix size.DecompositionFactory_MT_FDRM.svd(int numRows, int numCols, boolean needU, boolean needV, boolean compact) Returns aSingularValueDecompositionthat has been optimized for the specified matrix size. -
Uses of SingularValueDecomposition_F32 in org.ejml.dense.row.linsol.svd
Methods in org.ejml.dense.row.linsol.svd that return SingularValueDecomposition_F32Modifier and TypeMethodDescriptionSolvePseudoInverseSvd_FDRM.getDecomposition()SolveNullSpaceSvd_FDRM.getSvd()