Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angsch/block-algorithms
Block Linear Algebra Algorithms in Matlab
https://github.com/angsch/block-algorithms
blas lapack linear-algebra matlab matrix-calculations matrix-factorization octave
Last synced: 26 days ago
JSON representation
Block Linear Algebra Algorithms in Matlab
- Host: GitHub
- URL: https://github.com/angsch/block-algorithms
- Owner: angsch
- License: cc-by-sa-4.0
- Created: 2020-08-20T09:07:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-25T16:25:33.000Z (8 months ago)
- Last Synced: 2024-12-05T07:27:13.424Z (about 1 month ago)
- Topics: blas, lapack, linear-algebra, matlab, matrix-calculations, matrix-factorization, octave
- Language: MATLAB
- Homepage:
- Size: 90.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![CC BY-SA 4.0][cc-by-sa-shield]][cc-by-sa]
# Block Linear Algebra Algorithms
This file collection contains prototype realizations of linear algebra algorithms. All algorithms are expressed as block or tile algorithms, meaning that the bulk of the computation corresponds to matrix-matrix multiplications (level-3 BLAS).
* Matrix Factorizations
- Cholesky decomposition
- QR decomposition
- RQ decomposition
- LQ decomposition
- QL decomposition
- LU decomposition with partial pivoting
* Eigenvalue Problem
- Reduction to block Hessenberg form
- Solver of shifted Hessenberg systems
- Eigenvalue reordering in a Schur decomposition
* Solvers
- Least Squares solver (via QR)
- Triangular SolveThis work is licensed under a
[Creative Commons Attribution-ShareAlike 4.0 International License][cc-by-sa].[![CC BY-SA 4.0][cc-by-sa-image]][cc-by-sa]
[cc-by-sa]: http://creativecommons.org/licenses/by-sa/4.0/
[cc-by-sa-image]: https://licensebuttons.net/l/by-sa/4.0/88x31.png
[cc-by-sa-shield]: https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg