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
701 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 ...
4
votes
2answers
595 views
Obtaining an invertible square matrix from a non-square matrix of full rank in numpy or matlab
Assume you have an NxM matrix A of full rank, where M>N. If we denote the columns by C_i (with dimensions Nx1), then we can write the matrix as
A = [C_1, C_2, ..., C_M]
How can you obtain the ...
2
votes
3answers
52 views
Obtain null space or single dimensional space which is its best approximation efficiently
I have been doing this using an svd computation
[U, S, V] = svd(A)
wherein I use the last column of A as my null space approximation. Since A gets really large, I realized that this is slowing ...
2
votes
2answers
517 views
Eigen decomposition of a matrix of form W * diag(S) * W' for matrix exponential in MATLAB
W is a tall and skinny real valued matrix, and diag(S) is a diagonal matrix consists of +1 or -1 on the diagonal. I want the eigen decomposition of A = W * diag(S) * W' where single quote denotes ...
1
vote
1answer
651 views
1
vote
3answers
1k views
numpy linear algebra basic help
This is what I need to do-
I have this equation-
Ax = y
Where A is a rational m*n matrix (m<=n), and x and y are vectors of
the right size. I know A and y, I don't know what x is equal to. I
...
0
votes
2answers
80 views
how to check whether the image is compressed or not after applying SVD on that image(regarding size of compressed image on disk)
I=imread('cameraman.tif');
figure(1),imshow(I)
I1=im2double(I);
[U,S,V]=svd(I1);
figure(2),imshow(I1)
for j=1:90
I2=U(:,1:j)*S(1:j,1:j)*V(:,1:j)';
end
figure(3),imshow(I2)
I3=U*S*V';
...
0
votes
3answers
198 views
SVD to solve harwell-boeing sparse a.x=b system in C/C++?
Does anybody know of a sparse SVD solver for c++? My problem involves some badly conditioned matrices that might have zeroed columns/rows. My data is stored in a uBLAS matrix which is the ...