Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gauss

A linear algebra library that provides functions to calculate lengthy, and tireful calculations automatically.

TODO:

  • work on LU decomposition until it ultimately works
  • complete row_space and column_space functions

Installation

Install via GitHub repository:

pip install git+https://github.com/quandelaa/gauss.git

Example

import gauss

A = [[1, 2, 3],
     [1, 4, 5],
     [2, 1, 13]]

U = gauss.ref(A)
R = gauss.rref(A)

rank = gauss.rank(A)
inv = gauss.inverse(A)

print(U)
print(R)

print(rank)
print(inv)

License

This project is licensed under the MIT License - see the LICENSE file for details


  • All made by quandela

About

A linear algebra library that provides functions to calculate lengthy, and tireful calculations automatically.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages