scipy.sparse.linalg.spsolve — SciPy v1.4.0 Reference Guide
docs.scipy.org › scipyDec 16, 2019 · Solve the sparse linear system Ax=b, where b may be a vector or a matrix. Parameters Andarray or sparse matrix The square matrix A will be converted into CSC or CSR form bndarray or sparse matrix The matrix or vector representing the right hand side of the equation. If a vector, b.shape must be (n,) or (n, 1). permc_specstr, optional
scipy.sparse.linalg.spsolve — SciPy v1.7.1 Manual
docs.scipy.org › scipySolve the sparse linear system Ax=b, where b may be a vector or a matrix. Parameters Andarray or sparse matrix The square matrix A will be converted into CSC or CSR form bndarray or sparse matrix The matrix or vector representing the right hand side of the equation. If a vector, b.shape must be (n,) or (n, 1). permc_specstr, optional
scipy.sparse.linalg.spsolve — SciPy v0.14.0 Reference Guide
docs.scipy.org › scipyMay 11, 2014 · scipy.sparse.linalg.spsolve ¶ scipy.sparse.linalg.spsolve(A, b, permc_spec=None, use_umfpack=True) [source] ¶ Solve the sparse linear system Ax=b, where b may be a vector or a matrix. Notes For solving the matrix expression AX = B, this solver assumes the resulting matrix X is sparse, as is often the case for very sparse inputs.