mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-23 18:19:34 +08:00
6 lines
199 B
C++
6 lines
199 B
C++
Matrix3f A = Matrix3f::Random(3, 3), B;
|
|
B << 0, 1, 0, 0, 0, 1, 1, 0, 0;
|
|
cout << "At start, A = " << endl << A << endl;
|
|
A.applyOnTheLeft(B);
|
|
cout << "After applyOnTheLeft, A = " << endl << A << endl;
|