An open API service indexing awesome lists of open source software.

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.

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.