SciPy - Sparse Linear Algebra
You run the following code but get an error:
What is the most likely cause of the error?
from scipy.sparse import csc_matrix from scipy.sparse.linalg import splu A = csc_matrix([[0, 0], [0, 0]]) lu = splu(A)
What is the most likely cause of the error?
