https://github.com/massigy/java-linear-system-solvers
A couple linear system solvers for Ax=b, where A is a matrix and x and b are vectors.
https://github.com/massigy/java-linear-system-solvers
Last synced: 6 months ago
JSON representation
A couple linear system solvers for Ax=b, where A is a matrix and x and b are vectors.
- Host: GitHub
- URL: https://github.com/massigy/java-linear-system-solvers
- Owner: MassiGy
- Created: 2025-03-12T21:35:43.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-03-19T13:47:38.000Z (10 months ago)
- Last Synced: 2025-06-04T00:05:40.045Z (7 months ago)
- Language: Java
- Homepage:
- Size: 416 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Java Linear System Solvers.
This project implements a couple linear system solvers for Ax=b, where A is a matrix and x
and b are vectors.
The diffrent algorithms/approaches seen here are:
* LDR & LU factorisation.
* Thomas resolution algo.
* Hilbert resolution algo.