https://github.com/edwardcreighton/matrix
Custom implementation of matrix class in C++
https://github.com/edwardcreighton/matrix
cpp linear-algebra matrix matrix-calculations matrix-computations matrix-decompositions matrix-factorization matrix-functions
Last synced: 3 months ago
JSON representation
Custom implementation of matrix class in C++
- Host: GitHub
- URL: https://github.com/edwardcreighton/matrix
- Owner: EdwardCreighton
- Created: 2022-03-17T10:13:47.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-30T18:58:33.000Z (over 2 years ago)
- Last Synced: 2025-01-11T08:09:06.108Z (4 months ago)
- Topics: cpp, linear-algebra, matrix, matrix-calculations, matrix-computations, matrix-decompositions, matrix-factorization, matrix-functions
- Language: C++
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Matrix
Custom implementation of matrix class## Available features:
### Standard methods
- Create matrix with values of the type 'double'
- Set particular values
- Set all values with a string
- Get particular values
- Print full matrix in console with << operator
### Standard Mathematics
- Add matrices
- Subtract matrices
- Multiply matrix and double-type value (or in different order)
- Matrices Dot-Product
- Transpose
### Advanced Mathematics
- LU Decomposition
- LU-Cholesky Decomposition
- LU Determinant
- Solve system of linear equations with LU Decomposition
- Get invertible matrix with LU Decomposition
- QR-Givens Decomposition
- QR Determinant
- Solve system of linear equations with QR Decomposition
- Get invertible matrix with QR Decomposition