Skip to content

A Java-based program to reduce a system of linear equations to reduced echelon form (ref) and row-reduced echelon form (rref) using Gaussian Elimination and Gauss-Jordan Elimination, respectively.

License

Notifications You must be signed in to change notification settings

wermos/Linear-Algebra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Linear-Algebra

This repo contains the code I wrote to take a matrix or a system of linear equations as input and return its ref or rref as output. The code uses a homegrown Fraction class (which uses BigIntegers under the hood to store the numerator and the denominator) to store arbitrary-precision rational numbers, and does its calculations on objects of the Matrix class, which is simply a 2D array filled with Fractions.

About

A Java-based program to reduce a system of linear equations to reduced echelon form (ref) and row-reduced echelon form (rref) using Gaussian Elimination and Gauss-Jordan Elimination, respectively.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages