blob: cf0575f8e27aec2036712c88c88fe2348b711a7b [file] [log] [blame]
Benoit Jacob486fdb22008-05-29 03:12:30 +00001Matrix4d m = Matrix4d::zero();
2m.part<Eigen::Upper>().setOnes();
3cout << "Here is the matrix m:" << endl << m << endl;
4cout << "We know for sure that it is invertible." << endl;
5cout << "Here is its inverse:" << m.quickInverse() << endl;