@@ -6,16 +6,13 @@ int main()
{
srand(time(0));
Matrix a(2,1);
Matrix b(1,2);
Matrix a(3,1);
a.Randomize();
b.Randomize();
Matrix b = a;
a.Print("A");
b.Print("B");
a.Multiply(&b).Print("A x B");
return 0;
}
The note is not visible to the blocked user.