Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sushmey/iterative-gauss
This contains three programs written in python. Gauss-Seidel and Successive Over Relaxation to solve system of equations and Steepest-Descent to minimize a function of 2 or 3 variables.
https://github.com/sushmey/iterative-gauss
equations gauss-seidel gradient-descent python steepest-descent successive-over-relaxation sympy
Last synced: 4 days ago
JSON representation
This contains three programs written in python. Gauss-Seidel and Successive Over Relaxation to solve system of equations and Steepest-Descent to minimize a function of 2 or 3 variables.
- Host: GitHub
- URL: https://github.com/sushmey/iterative-gauss
- Owner: Sushmey
- Created: 2020-09-17T11:18:02.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-05T11:40:24.000Z (9 days ago)
- Last Synced: 2024-11-05T12:47:56.620Z (9 days ago)
- Topics: equations, gauss-seidel, gradient-descent, python, steepest-descent, successive-over-relaxation, sympy
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Iterative-Gauss
This contains three programs written in python.
- Gauss-Seidel
- Successive Over Relaxation to solve system of equations
- Steepest-Descent to minimize a function of 2 or 3 variables.
# How to run
Clone the repository using
```
git clone https://github.com/Sushmey/Iterative-Gauss.git
cd Iterative-Gauss
```
Run each program like a normal python program.
```
python3 SOR.py
```
To run the Steepest_descent_method.py program make sure you install the dependency first
```
pip3 install sympy
```
Now you can run it like a normal python program