1 Matrix2i A = Matrix2i::Random(); 2 cout << "Here are the coeffs of the 2x2 matrix A:\n"; 3 for(auto x : A.reshaped()) 4 cout << x << " "; 5 cout << "\n"; 6