mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
5c22c7a7de
UTF-8, LF, no BOM, and newlines at the end of files
6 lines
102 B
C++
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;
|