commit | e259f71477c05de231118a114398be22697feaaa | [log] [tgz] |
---|---|---|
author | Benoit Jacob <jacob.benoit.1@gmail.com> | Tue Oct 19 21:56:26 2010 -0400 |
committer | Benoit Jacob <jacob.benoit.1@gmail.com> | Tue Oct 19 21:56:26 2010 -0400 |
tree | 2438ca06bf8e7eb5a998b61ecd64334e956c2fc5 | |
parent | 9044c98cff257a4f7429deaa78cae59132957db7 [diff] [blame] |
rename PlanarRotation -> JacobiRotation
diff --git a/doc/snippets/Jacobi_makeJacobi.cpp b/doc/snippets/Jacobi_makeJacobi.cpp index 5c0ab73..0cc331d 100644 --- a/doc/snippets/Jacobi_makeJacobi.cpp +++ b/doc/snippets/Jacobi_makeJacobi.cpp
@@ -1,6 +1,6 @@ Matrix2f m = Matrix2f::Random(); m = (m + m.adjoint()).eval(); -PlanarRotation<float> J; +JacobiRotation<float> J; J.makeJacobi(m, 0, 1); cout << "Here is the matrix m:" << endl << m << endl; m.applyOnTheLeft(0, 1, J.adjoint());