public class PseudoInverse extends Object
Constructor and Description |
---|
PseudoInverse() |
Modifier and Type | Method and Description |
---|---|
static Jama.Matrix |
pseudoInverse(Jama.Matrix matrix)
Compute the Moore-Penrose Pseudo-Inverse.
|
static Jama.Matrix |
pseudoInverse(Jama.Matrix matrix,
int rank)
Compute the lower-rank approximation of the Moore-Penrose Pseudo-Inverse.
|
static Jama.Matrix |
pseudoInverse(Matrix matrix,
int rank)
Compute the lower-rank approximation of the Moore-Penrose Pseudo-Inverse.
|
public PseudoInverse()
public static Jama.Matrix pseudoInverse(Jama.Matrix matrix)
matrix
- The matrix to invert.public static Jama.Matrix pseudoInverse(Jama.Matrix matrix, int rank)
matrix
- The matrix to invert.rank
- the desired rank.public static Jama.Matrix pseudoInverse(Matrix matrix, int rank)
matrix
- The matrix to invert.rank
- the desired rank.