mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
7ea6ef8969
Add examples; move methods from EigenBase.h to MatrixBase.h
8 lines
207 B
C++
8 lines
207 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;
|