Written as semestral work at Programming in C# course on MFF.
MatrixLibrary is project of library which handles basic work with matrixes. It provides representation of matrix object as well as interface for representations of elements which will be stored in matrix. There are also some particular implementations of matrix element interface which can be used.
- Altering operations: Transposition, Symmetric, Gauss, Gauss-Jordan, Inverse, Adjugate, Orthogonal
- Computations: Determinant, Cramer, Linear equations system
- Decompositions: Cholesky decomposition, QR decomposition
- Characteristics: Eigenvalues, Eigenvectors, Diagonal matrix
- Classic operations: Addition, Subtraction, Multiplication, Multiply with number, Strassen-Winograd, Exponentiation
- Properties: IsInvertible, Rank, IsOrthogonal, Definity
- Pretty slow compared to matrixes which uses only primitive types (int, double)
- No tests, only example application
- Not ideal examples with advanced usage
- Sometimes Czech comments
Compilation is possible with provided Visual Studio project. If you want to generate documentation note that you will have to install Sandcastle for this.
Test application has to be run in x64 configuration and can use more than 4GB of RAM.
Licensed under MIT license.