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
Install via GitHub repository:
pip install git+https://github.com/quandelaa/gauss.gitimport 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)This project is licensed under the MIT License - see the LICENSE file for details
- All made by
quandela