https://github.com/ttwag/p2_gaussian_elimination
A function that encodes the Gaussian Elimination algorithm
https://github.com/ttwag/p2_gaussian_elimination
algorithm linear-algebra numpy python
Last synced: about 1 month ago
JSON representation
A function that encodes the Gaussian Elimination algorithm
- Host: GitHub
- URL: https://github.com/ttwag/p2_gaussian_elimination
- Owner: ttwag
- Created: 2022-09-10T16:29:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-23T23:40:33.000Z (over 1 year ago)
- Last Synced: 2025-02-17T11:15:11.611Z (4 months ago)
- Topics: algorithm, linear-algebra, numpy, python
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gaussian Elimination
This program contains a function that takes a matrix A and a vector b and prints the vector x from Ax = b.
If the matrix A is not invertible, the function will print "This matrix is not invertible".## How to Use It?
The user needs to call the gauss_eli function and pass in the matrix A and a vector b as nested list and list.
The result will be printed to the console.## File Structure and Dependencies
The user needs to install Python and the NumPy library.
gausseli copy.py contains the function gauss_eli, which performs the Gaussian Elimination.