How does it actually reduce noise..can you suggest some nice tutorials?
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||||
feedback
|
|
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. | ||||
|
feedback
|
|
Singular value decomposition is a method for taking an nxm matrix M and "decomposing" it into three matrices such that M=U*S*V. S is a diagonal square (the only nonzero entries are on the diagonal from top-left to bottom-right) matrix containing the "singular values" of M. U and V are orthogonal, which leads to the geometric understanding of SVD, but that isn't necessary for noise reduction. With M=U*S*V, we still have the original matrix M with all its noise intact. However, if we only keep the k largest singular values (which is easy, since many SVD algorithms compute a decomposition where the entries of S are sorted in nonincreasing order), then we have an approximation of the original matrix. This works because we assume that the small values are the noise, and that the more significant patterns in the data will be expressed through the vectors associated with larger singular values. In fact, the resulting approximation is the most accurate rank-k approximation of the original matrix (has the least squared error). | |||
|
feedback
|
|
You will find AMS Article on SVD very helpful. | |||
|
feedback
|
|
SVD can also be used to greatly ease global (i.e. to all observations simultaneously) fitting of an arbitrary model (expressed in an formula) to data (with respect to two variables and expressed in a matrix). Pretty cool, eh? The columns of U and V can also be inspected to glean information about the data; for example each inflection point in the columns of V typically indicates a different component of the model. Finally, and actually addressing your question, it is import to note that although each successive singular value (element of the diagonal matrix S) with its attendant vectors U and V does have lower signal to noise, the separation of the components of the model in these "less important" vectors is actually more pronounced. In other words, if the data is described by a bunch of state changes that follow a sum of exponentials or whatever, the relative weights of each exponential get closer together in the smaller singular values. In other other words the later singular values have vectors which are less smooth (noisier) but in which the change represented by each component are more distinct. | |||
|
feedback
|