forked from leto/LeMA
18 lines
210 B
C++
18 lines
210 B
C++
#include<iostream>
|
|
#include "matrices.h"
|
|
// using namespace std;
|
|
|
|
int main()
|
|
{
|
|
srand(time(0));
|
|
|
|
Matrix a(3,1);
|
|
a.Randomize();
|
|
|
|
Matrix b = a;
|
|
|
|
a.Print("A");
|
|
b.Print("B");
|
|
|
|
return 0;
|
|
} |