https://github.com/juliusmarkwei/guassian-elimination-method
https://github.com/juliusmarkwei/guassian-elimination-method
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/juliusmarkwei/guassian-elimination-method
- Owner: juliusmarkwei
- Created: 2022-08-31T12:57:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-31T13:09:33.000Z (over 3 years ago)
- Last Synced: 2025-04-07T01:25:55.922Z (9 months ago)
- Language: C++
- Size: 678 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Gauss elimination method
Gauss elimination method is used to solve a system of linear equations. Let’s recall the definition of these systems of equations. A system of linear equations is a group of linear equations with various unknown factors. As we know, unknown factors exist in multiple equations. Solving a system involves finding the value for the unknown factors to verify all the equations that make up the system.
In this aglorithm, a n-by-(n+1) dimentional matrix A is implemened using the Gaussian Elimination Method.