How does it actually reduce noise..can you suggest some nice tutorials?
|
3
|
|||||||||
|
|
|
One way to use SVD to reduce noise is to do the decomposition, set components that are near zero to be exactly zero, then re-compose. Here's an online tutorial on SVD. You might want to take a look at Numerical Recipes. |
|||
|
|
|
SVD can be understood from a geometric sense for square matrices as a transformation on a vector. Consider a square n x n matrix M multiplying a vector v to produce an output vector w:
The singular value decomposition M is the product of three matrices So the effect of left-multiplying a vector v by a matrix M is to rotate/reflect v by M's orthonormal factor V, then scale/squash the result by a diagonal factor S, then rotate/reflect the result by M's orthonormal factor U. One reason SVD is desirable from a numerical standpoint is that multiplication by orthonormal matrices is an invertible and extremely stable operation (condition number is 1). SVD captures any ill-conditioned-ness in the diagonal scaling matrix S. |
||
|
|
|
|
To answer to the tittle question: SVD is a generalization of eigenvalues/eigenvectors to non-square matrices. Say, $X \in N \times p$, then the SVD decomposition of X yields X=UDV^T where D is diagonal and U and V are orthogonal matrices. Now X^TX is a square matrice, and the SVD decomposition of X^TX=VD^2V where V is equivalent to the eigenvectors of X^TX and D^2 contains the eigenvalues of X^TX. |
|||
|
|
