1
0
forked from leto/LeMA
LeMA/main.cpp

15 lines
221 B
C++

#include<iostream>
#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;
}