libeigen/eigen!2509 Closes #2868 Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
7 lines
156 B
C++
7 lines
156 B
C++
// SPDX-FileCopyrightText: The Eigen Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
MatrixXd m(2, 3);
|
|
m << 2, -4, 6, -5, 1, 0;
|
|
cout << m.cwiseAbs2() << endl;
|