Tagged Questions

5
votes
2answers
704 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
597 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 ...
4
votes
3answers
1k views

sparse matrix svd in python

Does anyone know how to perform svd operation on a sparse matrix in python? It seems that there is no such functionality provided in scipy.sparse.linalg.
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
1answer
49 views

Have memory error when using scipy to do SVD

I tried to use LSI to generate vectors to represent documents. I am using the svd package in Scipy library. But the program throws a memory error. The size of my matrix is 100*13057. Is this too big ...