Quote:
Originally Posted by saikiranra
Code:
x = np.linalg.cho_solve(np.linalg.cho_factor(M) , s)
|
linalg.cho_factor() and linalg.cho_solve() are in scipy, not numpy.
Attached is a sparse-format "M" matrix generated from
this data containing 2,696 teams and 8,921 matches.
Can someone with a Python installation please factor that matrix with LU
1 and Cholesky
2 and report the times?
1scipy.linalg.lu(M)
2scipy.linalg.cho_factor(M)