Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bjam24/agh-matrix-calculus-and-multivariate-statistics
This respository contains projects made for the Matrix Calculus and Multivatiate Statistics course at the AGH UST in 2024 by team of 2 students.
https://github.com/bjam24/agh-matrix-calculus-and-multivariate-statistics
gauss-elimination latex lu-factorization matrix-multiplication pivoting python strassen-algorithm strassen-multiplication
Last synced: 21 days ago
JSON representation
This respository contains projects made for the Matrix Calculus and Multivatiate Statistics course at the AGH UST in 2024 by team of 2 students.
- Host: GitHub
- URL: https://github.com/bjam24/agh-matrix-calculus-and-multivariate-statistics
- Owner: bjam24
- Created: 2024-03-06T19:50:58.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-07-07T13:08:03.000Z (6 months ago)
- Last Synced: 2024-07-07T14:29:35.583Z (6 months ago)
- Topics: gauss-elimination, latex, lu-factorization, matrix-multiplication, pivoting, python, strassen-algorithm, strassen-multiplication
- Language: TeX
- Homepage:
- Size: 5.76 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Matrix Calculus and Multivariate Statistics 🧮
Projects made for the Matrix Calculus and Multivatiate Statistics course at the AGH UST in 2024 by 2 students (me and cypneu).
All provided algorithms are from scratch as a result of our work after hours. Given tasks were intended to teach us how to apply mathematical solutions in Machine Learning in order to obtain faster and more efficient code performance.## Project 1 "Matrix Multiplication Methods Implementation"
- traditional matrix multiplication
- recursive Strassen algorithm## Project 2 "Gaussian Elimination and LU Factorization"
- Gauss elimination algorithm without pivoting
- Gauss elimination algorithm with pivoting
- LU factorization algorithm without pivoting
- LU factorization algorithm with pivoting## Project 3 "Matrix Norm and Condition Number Calculation Tasks"
- matrix norm ||M||1
- matrix conditioning coefficient ||M||1
- matrix norm ||M||2
- matrix conditioning coefficient ||M||2
- matrix norm ||M||p
- matrix conditioning coefficient ||M||p
- matrix norm ||M||∞
- matrix conditioning coefficient ||M||∞
- SVD of matrix M## Technology stack
- Python
- Latex