|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use SingularValueDecomposition | |
|---|---|
| org.ejml.alg.dense.decomposition.svd | |
| org.ejml.factory | |
| org.ejml.ops | |
| org.ejml.simple | |
| Uses of SingularValueDecomposition in org.ejml.alg.dense.decomposition.svd |
|---|
| Classes in org.ejml.alg.dense.decomposition.svd that implement SingularValueDecomposition | |
|---|---|
class |
SafeSvd
Wraps around a SingularValueDecomposition and ensures that the input is not modified. |
class |
SvdImplicitQrDecompose
Computes the Singular value decomposition of a matrix using the implicit QR algorithm for singular value decomposition. |
| Constructors in org.ejml.alg.dense.decomposition.svd with parameters of type SingularValueDecomposition | |
|---|---|
SafeSvd(SingularValueDecomposition<DenseMatrix64F> alg)
|
|
| Uses of SingularValueDecomposition in org.ejml.factory |
|---|
| Methods in org.ejml.factory that return SingularValueDecomposition | |
|---|---|
static SingularValueDecomposition<DenseMatrix64F> |
DecompositionFactory.svd(int numRows,
int numCols,
boolean needU,
boolean needV,
boolean compact)
Returns a SingularValueDecomposition that has been optimized for the specified matrix size. |
| Methods in org.ejml.factory with parameters of type SingularValueDecomposition | |
|---|---|
static double |
DecompositionFactory.quality(DenseMatrix64F orig,
SingularValueDecomposition<DenseMatrix64F> svd)
Computes a metric which measures the the quality of a singular value decomposition. |
| Uses of SingularValueDecomposition in org.ejml.ops |
|---|
| Methods in org.ejml.ops with parameters of type SingularValueDecomposition | |
|---|---|
static int |
SingularOps.nullity(SingularValueDecomposition svd,
double threshold)
Extracts the nullity of a matrix using a preexisting decomposition. |
static DenseMatrix64F |
SingularOps.nullSpace(SingularValueDecomposition<DenseMatrix64F> svd,
DenseMatrix64F nullSpace,
double tol)
Returns the null-space from the singular value decomposition. |
static DenseMatrix64F |
SingularOps.nullVector(SingularValueDecomposition<DenseMatrix64F> svd,
boolean isRight,
DenseMatrix64F nullVector)
The vector associated will the smallest singular value is returned as the null space of the decomposed system. |
static int |
SingularOps.rank(SingularValueDecomposition svd,
double threshold)
Extracts the rank of a matrix using a preexisting decomposition. |
| Uses of SingularValueDecomposition in org.ejml.simple |
|---|
| Methods in org.ejml.simple that return SingularValueDecomposition | |
|---|---|
SingularValueDecomposition |
SimpleSVD.getSVD()
Returns the underlying decomposition that this is a wrapper around. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||