I was trying to create a sparse matrix using scipy.sparse (10 X
10) with just the first row and first column filled with ones.
Lets call this matrix Asp. This is how I created Asp
from scipy import sparse
Asp = scipy.lil_matrix(10,10)
for i in range(10):
Asp[i,0] = i
Asp[
I wanted to know if scipy.sparse support or will support the following
functions which are available in scipy.linalg or scipy or numpy:
Inverse
Cholesky
SVD
multiply
power
append
eig
concatenate
Thanks...
--
http://mail.python.org/mailman/listinfo/python-list