Cloned library Eigen-3.4.0 with extra build files for internal package management.

6 lines
102 B

2 years ago
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;