00001 #ifndef _MSC_VER 00002 #warning deprecated 00003 #endif 00004 /* 00005 Matrix3d m = Matrix3d::Zero(); 00006 m.part<Eigen::UpperTriangular>().setOnes(); 00007 cout << "Here is the matrix m:" << endl << m << endl; 00008 Matrix3d n = Matrix3d::Ones(); 00009 n.part<Eigen::LowerTriangular>() *= 2; 00010 cout << "Here is the matrix n:" << endl << n << endl; 00011 cout << "And now here is m.inverse()*n, taking advantage of the fact that" 00012 " m is upper-triangular:" << endl 00013 << m.marked<Eigen::UpperTriangular>().solveTriangular(n); 00014 */