forked from leto/LeMA
15 lines
193 B
C++
15 lines
193 B
C++
#include "matrices.h"
|
|
// using namespace std;
|
|
|
|
int main()
|
|
{
|
|
srand(time(0));
|
|
|
|
Matrix a(3,2);
|
|
a.Randomize();
|
|
|
|
a.Print("A");
|
|
a.Transpose().Print("Transposed");
|
|
|
|
return 0;
|
|
} |