Added Matrix class and basic functions

This commit is contained in:
2024-12-23 21:04:43 +01:00
parent 6827d7f164
commit 89007bfa9f
3 changed files with 114 additions and 0 deletions

15
main.cpp Normal file
View File

@@ -0,0 +1,15 @@
#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;
}