MatrixBase_applyOnTheLeft.cpp 207 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 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;