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?
5
votes
2answers
745 views
Calculating the null space of a matrix
I'm attempting to solve a set of equations of the form Ax = 0. A is known 6x6 matrix and I've written the below code using SVD to get the vector x which works to a certain extent. The answer is ...
3
votes
1answer
621 views
Pagerank vs SVD
Pagerank works on the nodegraph of a series of pages and the directed edges formed by their respective inward and outward links. Thus the rank of a particular page is broadly a locally-induced effect ...
3
votes
3answers
556 views
Dimension Reduction
I'm trying to reduce a high-dimension dataset to 2-D. However, I don't have access to the whole dataset upfront. So, I'd like to generate a function that takes an N-dimensional vector and returns a ...
2
votes
1answer
556 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 ...
0
votes
4answers
503 views
java jama array problem
I asked a question before but duffymo said it is not clear so i am going to post it again here.
I am using Jama api for SVD calculation. I know very well about jama and SVD.
Jama does not work if ...