Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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