Return a fuction for solving a sparse linear system, with A pre-factorized.
Examples
solve = factorized( A ) # Makes LU decomposition. x1 = solve( rhs1 ) # Uses the LU factors. x2 = solve( rhs2 ) # Uses again the LU factors.
scipy.sparse.linalg.spsolve
scipy.sparse.linalg.bicg
Enter search terms or a module, class or function name.