Matrix class for working with standard linear algebra methods
- g++
- CMake 3.10 version (or higher)
- GTest (for testing)
To compile matrix:
$ mkdir build
$ cmake -S ./ -B build/Release
$ cmake --build build/ReleaseTo compile unit tests you need the gtest library:
$ cd test
$ mkdir build
$ cd build
$ сmake ..
$ make$ ./build/Debug/discr$ ./UnitTest