#include "matrices.h" int main() { Matrix a(3, 3); a.Print("A"); a = a.Add(0.5F); a.Print("A + 0.5F"); return 0; }