Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/madhuryahait/row-echelon
This is a python programme to convert the user given matrix into a Row Echelon form .
https://github.com/madhuryahait/row-echelon
Last synced: 3 days ago
JSON representation
This is a python programme to convert the user given matrix into a Row Echelon form .
- Host: GitHub
- URL: https://github.com/madhuryahait/row-echelon
- Owner: MADHURYAHAIT
- Created: 2022-10-11T19:19:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-12T03:50:04.000Z (about 2 years ago)
- Last Synced: 2023-10-15T22:23:20.852Z (about 1 year ago)
- Language: Python
- Size: 376 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Row-Echelon
What Is Row Echelon Form
A matrix being in row echelon form means that Gaussian elimination has operated on the rows, and column echelon form means that Gaussian elimination has operated on the columns. In other words, a matrix is in column echelon form if its transpose is in row echelon form. Therefore, only row echelon forms are considered in the remainder of this article. The similar properties of column echelon form are easily deduced by transposing all the matrices. Specifically, a matrix is in row echelon form if:
1. All rows consisting of only zeroes are at the bottom.
2. The leading coefficient (also called the pivot) of a nonzero row is always strictly to the right of the leading coefficient of the row above it.This is the output of the python program :