backport compilation fix

This commit is contained in:
Benoit Jacob 2009-01-27 17:46:02 +00:00
parent 2eef21a8d5
commit 02ba4e2f54

View File

@ -1,4 +1,4 @@
Matrix3d m = Matrix3i::Zero();
Matrix3d m = Matrix3d::Zero();
m.part<Eigen::StrictlyUpperTriangular>().setOnes();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "And let us now compute m*m.adjoint() in a very optimized way" << endl