Files
eigen/doc/snippets/TopicAliasing_mult1.cpp
2026-05-04 00:36:12 +00:00

8 lines
157 B
C++

// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
MatrixXf matA(2, 2);
matA << 2, 0, 0, 2;
matA = matA * matA;
cout << matA;