blob: c96220f72ca416c901c010579f0312dc777c4eaf [file] [log] [blame]
Hauke Heibel494a8862009-12-11 19:39:01 +01001#ifndef _MSC_VER
2 #warning deprecated
3#endif
Gael Guennebaud75793602009-07-27 18:50:39 +02004/* deprecated
Gael Guennebaudc10f0692008-07-21 00:34:46 +00005Matrix3i m = Matrix3i::Random();
Benoit Jacob486fdb22008-05-29 03:12:30 +00006cout << "Here is the matrix m:" << endl << m << endl;
7cout << "Here is the upper-triangular matrix extracted from m:" << endl
Benoit Jacob9e00d942008-12-20 13:36:12 +00008 << m.part<Eigen::UpperTriangular>() << endl;
Benoit Jacob486fdb22008-05-29 03:12:30 +00009cout << "Here is the strictly-upper-triangular matrix extracted from m:" << endl
Benoit Jacob9e00d942008-12-20 13:36:12 +000010 << m.part<Eigen::StrictlyUpperTriangular>() << endl;
Benoit Jacob486fdb22008-05-29 03:12:30 +000011cout << "Here is the unit-lower-triangular matrix extracted from m:" << endl
Benoit Jacob9e00d942008-12-20 13:36:12 +000012 << m.part<Eigen::UnitLowerTriangular>() << endl;
Gael Guennebaud75793602009-07-27 18:50:39 +020013*/