aboutsummaryrefslogtreecommitdiff
path: root/doc/snippets/MatrixBase_part.cpp
blob: d3e7f482e703d3c0afe0aa4d2f23849ed66a4f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _MSC_VER
  #warning deprecated
#endif
/*
Matrix3d m = Matrix3d::Zero();
m.part<Eigen::StrictlyUpperTriangular>().setOnes();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "And let us now compute m*m.adjoint() in a very optimized way" << endl
     << "taking advantage of the symmetry." << endl;
Matrix3d n;
n.part<Eigen::SelfAdjoint>() = (m*m.adjoint()).lazy();
cout << "The result is:" << endl << n << endl;
*/