blob: 02f44c83fd3e281c8ae859dfef017277bd9de0bb [file] [log] [blame]
Gael Guennebaudc10f0692008-07-21 00:34:46 +00001Matrix3i m = Matrix3i::Random();
Benoit Jacob486fdb22008-05-29 03:12:30 +00002cout << "Here is the matrix m:" << endl << m << endl;
3cout << "Here is the upper-triangular matrix extracted from m:" << endl
Benoit Jacob9e00d942008-12-20 13:36:12 +00004 << m.part<Eigen::UpperTriangular>() << endl;
Benoit Jacob486fdb22008-05-29 03:12:30 +00005cout << "Here is the strictly-upper-triangular matrix extracted from m:" << endl
Benoit Jacob9e00d942008-12-20 13:36:12 +00006 << m.part<Eigen::StrictlyUpperTriangular>() << endl;
Benoit Jacob486fdb22008-05-29 03:12:30 +00007cout << "Here is the unit-lower-triangular matrix extracted from m:" << endl
Benoit Jacob9e00d942008-12-20 13:36:12 +00008 << m.part<Eigen::UnitLowerTriangular>() << endl;