Tagged Questions

18
votes
6answers
2k views

What is SVD(singular value decomposition)

How does it actually reduce noise..can you suggest some nice tutorials?
2
votes
1answer
537 views

How to compute SVD (Singular Value Decomposition) of upper triangular matrix

Do you know an algorithm that calculates SVD using BLAS or LAPACK? Lets say I have a symmetric Matrix A: 1 22 13 14 22 1 45 24 13 ...
2
votes
2answers
360 views

Performing a SVD on tweets. Memory problem

EDIT: I the size of the wordlist is 10-20 times bigger than I wrote down. I simply forgot a zero. EDIT2: I will have a look into SVDLIBC and also see how to reduce a matrix to its dense version so ...
0
votes
1answer
449 views

OpenCV SVD Matrix format

I currently have a set of 2D Cartesian coordinates e.g. {(1,3), (2,2), (3,4)} Which will be put into a 2D array, to perform SVD properly would the matrix be put together such that the coordinates form ...