#include #include "matrices.h" // using namespace std; int main() { srand(time(0)); Matrix test(3,2); test.Randomize(); test.Print(""); test.Transpose(); test.Print(""); return 0; }