'Left division of sparse matrix

I have a spdiags.sparse matrix of size 158235x158235 and type class 'numpy.float64'.

In MatLab, an operator \\ or x = mldivide(A,B) does matrix left division: example, x = A\B to provide a solution to the equation A*x = B. If A is a sparse matrix, how do I effectively solve it in Python?

Thank you in advance !



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source