Expand description
Linear solvers for ODE systems
This module provides linear system solvers for use within ODE solvers. These replace the need for external linear algebra libraries like ndarray-linalg.
Enums§
- Linear
Solver Type - Enum for different types of linear solvers
Functions§
- auto_
solve_ linear_ system - Solve a linear system using automatic method selection
- matrix_
norm - Compute the Frobenius norm of a matrix
- solve_
gmres - Solve a linear system using GMRES (Generalized Minimal Residual) method
- solve_
linear_ system - Solve a linear system Ax = b using Gaussian elimination with partial pivoting
- solve_
lu - Solve a linear system using LU decomposition (alias for compatibility)
- vector_
norm - Compute the norm of a vector