2009-12-11 19:39:01 +01:00
|
|
|
#ifndef _MSC_VER
|
|
|
|
|
#warning deprecated
|
|
|
|
|
#endif
|
2009-07-27 18:50:39 +02:00
|
|
|
/* deprecated
|
2008-07-21 00:34:46 +00:00
|
|
|
Matrix3i m = Matrix3i::Random();
|
2008-05-29 03:12:30 +00:00
|
|
|
cout << "Here is the matrix m:" << endl << m << endl;
|
|
|
|
|
cout << "Here is the upper-triangular matrix extracted from m:" << endl
|
2008-12-20 13:36:12 +00:00
|
|
|
<< m.part<Eigen::UpperTriangular>() << endl;
|
2008-05-29 03:12:30 +00:00
|
|
|
cout << "Here is the strictly-upper-triangular matrix extracted from m:" << endl
|
2008-12-20 13:36:12 +00:00
|
|
|
<< m.part<Eigen::StrictlyUpperTriangular>() << endl;
|
2008-05-29 03:12:30 +00:00
|
|
|
cout << "Here is the unit-lower-triangular matrix extracted from m:" << endl
|
2008-12-20 13:36:12 +00:00
|
|
|
<< m.part<Eigen::UnitLowerTriangular>() << endl;
|
2009-07-27 18:50:39 +02:00
|
|
|
*/
|