public static class FloatMatrix.SVD
extends java.lang.Object
implements java.io.Serializable
For an m-by-n matrix A with m ≥ n, the singular value decomposition is an m-by-n orthogonal matrix U, an n-by-n diagonal matrix Σ, and an n-by-n orthogonal matrix V so that A = U*Σ*V'.
For m < n, only the first m columns of V are computed and Σ is m-by-m.
The singular values, σk = Σkk, are ordered so that σ0 ≥ σ1 ≥ ... ≥ σn-1.
The singular value decomposition always exists. The matrix condition number and the effective numerical rank can be computed from this decomposition.
SVD is a very powerful technique for dealing with sets of equations or matrices that are either singular or else numerically very close to singular. In many cases where Gaussian elimination and LU decomposition fail to give satisfactory results, SVD will diagnose precisely what the problem is. SVD is also the method of choice for solving most linear least squares problems.
Applications which employ the SVD include computing the pseudo-inverse, least squares fitting of data, matrix approximation, and determining the rank, range and null space of a matrix. The SVD is also applied extensively to the study of linear inverse problems, and is useful in the analysis of regularization methods such as that of Tikhonov. It is widely used in statistics where it is related to principal component analysis. Yet another usage is latent semantic indexing in natural language text processing.
Modifier and Type | Field and Description |
---|---|
int |
m
The number of rows of matrix.
|
int |
n
The number of columns of matrix.
|
float[] |
s
The singular values in descending order.
|
FloatMatrix |
U
The left singular vectors U.
|
FloatMatrix |
V
The right singular vectors V.
|
Constructor and Description |
---|
SVD(float[] s,
FloatMatrix U,
FloatMatrix V)
Constructor.
|
SVD(int m,
int n,
float[] s)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
float |
condition()
Returns the L2 norm condition number, which is max(S) / min(S).
|
FloatMatrix |
diag()
Returns the diagonal matrix of singular values.
|
double |
norm()
Returns the L2 matrix norm.
|
int |
nullity()
Returns the dimension of null space.
|
FloatMatrix |
nullspace()
Returns the matrix which columns are the orthonormal basis for the null space.
|
FloatMatrix |
pinv()
Returns the pseudo inverse.
|
FloatMatrix |
range()
Returns the matrix which columns are the orthonormal basis for the range space.
|
int |
rank()
Returns the effective numerical matrix rank.
|
float[] |
solve(float[] b)
Solves the least squares min || B - A*X ||.
|
public final int m
public final int n
public final float[] s
public final FloatMatrix U
public final FloatMatrix V
public SVD(int m, int n, float[] s)
public SVD(float[] s, FloatMatrix U, FloatMatrix V)
public FloatMatrix diag()
public double norm()
public int rank()
public int nullity()
public float condition()
public FloatMatrix range()
public FloatMatrix nullspace()
public FloatMatrix pinv()
public float[] solve(float[] b)
b
- the right hand side of overdetermined linear system.java.lang.RuntimeException
- if matrix is rank deficient.