15 lines
221 B
C++
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;
|
|
} |