Concept Flow - Sparse direct solvers (spsolve)
Input sparse matrix A and vector b
Call spsolve(A, b)
Factorize sparse matrix A
Solve Ax = b using factorization
Return solution vector x
Use x for analysis
The solver takes a sparse matrix and vector, factorizes the matrix efficiently, solves the system, and returns the solution vector.