mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
486fdb26a1
this should be alpha5.
9 lines
373 B
C++
9 lines
373 B
C++
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;
|