aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Jacobi_makeJacobi.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-10-19 21:56:26 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-10-19 21:56:26 -0400
commite259f71477c05de231118a114398be22697feaaa (patch)
tree2438ca06bf8e7eb5a998b61ecd64334e956c2fc5 /doc/snippets/Jacobi_makeJacobi.cpp
parent9044c98cff257a4f7429deaa78cae59132957db7 (diff)
rename PlanarRotation -> JacobiRotation
Diffstat (limited to 'doc/snippets/Jacobi_makeJacobi.cpp')
-rw-r--r--doc/snippets/Jacobi_makeJacobi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/snippets/Jacobi_makeJacobi.cpp b/doc/snippets/Jacobi_makeJacobi.cpp
index 5c0ab7374..0cc331d9f 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());