1
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2025-05-03 09:14:11 +08:00
eigen/doc/snippets/TopicAliasing_mult5.cpp

6 lines
109 B
C++

MatrixXf A(2,2), B(3,2);
B << 2, 0, 0, 3, 1, 1;
A << 2, 0, 0, -2;
A = (B * A).eval().cwiseAbs();
cout << A;