blob: 01c1c6d77c5e4d75ab5f63756737367c7c271196 [file] [log] [blame]
Austin Schuh189376f2018-12-20 22:11:15 +11001MatrixXf A(2,2), B(3,2);
2B << 2, 0, 0, 3, 1, 1;
3A << 2, 0, 0, -2;
4A = (B * A).cwiseAbs();
Austin Schuhc55b0172022-02-20 17:52:35 -08005cout << A;