mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-07 21:51:47 +08:00

Add examples; move methods from EigenBase.h to MatrixBase.h (grafted from 7ea6ef89693b0d70db29ccad1a3cc7771195e318 )
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;
|