An open API service indexing awesome lists of open source software.

https://github.com/omadson/ckp8122

my codes of the computational linear algebra course.
https://github.com/omadson/ckp8122

Last synced: 3 months ago
JSON representation

my codes of the computational linear algebra course.

Awesome Lists containing this project

README

        

# CKP8122
my codes of the computational linear algebra course.

## to-do list
### basic
- [x] Matrix class
- [x] multiplication of vector-matrix and matrix-vector

### direct Methods
- [x] gauss elimination
- [x] LU decomposition
- [x] Cholesky decomposition (positive definide matrices)

### iterative methods
- [x] Jacobi
- [x] Gauss-Seidel
- [x] successive over-relaxation
- [x] conjugate gradients

### least square methods
- [x] Gram-Schmidt
- [x] QR decomposition using Householder
- [ ] QR decomposition using Jacobi

### eigenvalues and eigenvectors of matrices
- [ ] power method (regular, inverse and with displacement)
- [ ] similarity transformations method (Householder + QR)

### final
- [ ] singular value decomposition