source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/snippets/Jacobi_makeJacobi.cpp@ 136

Last change on this file since 136 was 136, checked in by ldecherf, 7 years ago

Doc

File size: 292 bytes
Line 
1Matrix2f m = Matrix2f::Random();
2m = (m + m.adjoint()).eval();
3JacobiRotation<float> J;
4J.makeJacobi(m, 0, 1);
5cout << "Here is the matrix m:" << endl << m << endl;
6m.applyOnTheLeft(0, 1, J.adjoint());
7m.applyOnTheRight(0, 1, J);
8cout << "Here is the matrix J' * m * J:" << endl << m << endl;
Note: See TracBrowser for help on using the repository browser.