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