Expand description
§Numerical Equation Solvers
This module provides numerical methods for solving linear and non-linear systems of equations. It includes functions for solving linear systems using Gaussian elimination (via RREF) and non-linear systems using Newton’s method.
Enums§
- Linear
Solution - Represents the solution to a system of linear equations.
Functions§
- solve_
linear_ system - Solves a system of linear equations
Ax = b
. - solve_
nonlinear_ system - Solves a system of non-linear equations
F(X) = 0
using Newton’s method.