Matrix implementation
I am trying to implement an optimal and fast running matrix in C++. I need some review of the code and ideas on how to improve the code quality if it shall be. class Matrix { // Some static assertions and useful types static_assert(std::is_arithmetic_v<T>, “Matrix template parameter type must be arithmetic”); using DataType = std::vector<T>; … Read more