fifth-postulate/gaussian-elimination

Perform Gaussian Elimination on matrices.


License
MIT
Install
elm-package install fifth-postulate/gaussian-elimination 1.0.0

Documentation

Gaussian Elimination

This project provides an Elm library that can perform Gaussian Elimination process on a matrix.

Concept

Gaussian Elimination is

an algorithm for solving systems of linear equations. It consists of a sequence of row-wise operations performed on the corresponding matrix of coefficients.

Our implementation allows the matrix to contain elements from an arbitrary field, for which the field operations should be provided.