Files
Efim Beshmenev 7f9dc067a1 Initial commit
2026-07-10 19:16:42 +03:00

6 lines
102 B
C++

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