Matrix calculator
A calculator that can handle matrix calculations of up to 3x3 matrices.
This cannot currently be found on my git repository.
The matrix calculator I have made originally started as a C++ project, however as I had a limited development time I switched to C# which was much faster to program and debug.
A non-exhaustive list of things the calculator covers includes:
- Scalar addition, subtraction, multiplication, division and exponents,
- Multiplying matrices, including those of varying sizes,
- Finding the determinant of a matrix,
- Matrix powers, including negative powers.
The program also has an account system where users can create local accounts and save matrices they're using accross sessions. This system uses SQLite to create and use a local SQL databse.
This program has been tested on both linux (Fedora 34) and Windows OS.