aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_part.cpp
blob: fbc55b1ca3f70746146bf75f61dd3228a0c7e370 (plain)
1
2
3
4
5
6
7
8
Matrix3d m = Matrix3i::Zero();
m.part<Eigen::StrictlyUpper>().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;