vote up 10 vote down star
3

How does it actually reduce noise..can you suggest some nice tutorials?

flag
Rather off-topic question, if you want theory, then go to Wikipedia - they've got basic description and references. If you want help on particular programming subject then restate the question (i.e. how to use Lapack to obtain SVD of hermitian matrix, etc). – unknown (google) Feb 10 at 8:38
1  
Please don't close. This is far more programming-related than some of the touchy-feely questions that have been on this site. – Jason S Feb 10 at 16:10
After some thinking I have to agree, and remove the -1 :) – unknown (google) Feb 10 at 17:12

3 Answers

vote up 6 vote down

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.

link|flag
this is also the basic for LSA/LSI (latent semantic indexing). The theory is that the "small value" vectors are really just "noisy" perturbations of the vector. – Gregg Lind Jun 25 at 22:05
vote up 12 vote down

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:

w = M*v

The singular value decomposition M is the product of three matrices M=U*S*V, so w=U*S*V*v. U and V are orthonormal matrices. From a geometric transformation point of view (acting upon a vector by multiplying it), they are combinations of rotations and reflections that do not change the length of the vector they are multiplying. S is a diagonal matrix which represents scaling or squashing with different scaling factors (the diagonal terms) along each of the n axes.

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.

link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.