Cleanup: fix include guard comments and names

libeigen/eigen!2517
This commit is contained in:
Florian Maurin
2026-05-06 16:18:44 -07:00
committed by Rasmus Munk Larsen
parent 4b325d6b13
commit 90dfbc054e
170 changed files with 641 additions and 473 deletions
@@ -0,0 +1,7 @@
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
Matrix2i A = Matrix2i::Random();
cout << "Here are the coeffs of the 2x2 matrix A:\n";
for (auto x : A.reshaped()) cout << x << " ";
cout << "\n";