Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyeongmincho/homework__linear-algebra-1
2017년도 2학기 인하대 컴퓨터기반선형대수 실습과제 1 (Reduce row echelon form)
https://github.com/kyeongmincho/homework__linear-algebra-1
Last synced: 9 days ago
JSON representation
2017년도 2학기 인하대 컴퓨터기반선형대수 실습과제 1 (Reduce row echelon form)
- Host: GitHub
- URL: https://github.com/kyeongmincho/homework__linear-algebra-1
- Owner: kyeongmincho
- License: mit
- Created: 2017-09-17T11:53:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-01T12:22:35.000Z (over 7 years ago)
- Last Synced: 2024-11-19T17:17:45.588Z (2 months ago)
- Language: Python
- Homepage:
- Size: 516 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 2017년도 2학기 인하대 컴퓨터기반선형대수 실습과제 1
목표 : Reduce row echelon form을 python을 이용하여 코딩하기.## INSTALL
python은 3 버전 이상에서 사용
$ git clone https://github.com/drzix/reduce-row-echelon-form.git
$ python3 reduce-row-echelon-form/run.py## 예시 실행화면
* 3x3 정방행렬
![Alt text](https://github.com/drzix/reduce-row-echelon-form/blob/master/examples/3x3.png)
* 4x4 정방행렬
![Alt text](https://github.com/drzix/reduce-row-echelon-form/blob/master/examples/4x4.png)
* 5x5 정방행렬
![Alt text](https://github.com/drzix/reduce-row-echelon-form/blob/master/examples/5x5.png)