libeigen/eigen!2509 Closes #2868 Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
8 lines
157 B
C++
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;
|