blob: 6f8ec054aed538cc2939ce74fd246370fa1c0111 [file] [log] [blame]
Gael Guennebaud16c7b1d2009-09-03 11:17:16 +02001Vector2f v = Vector2f::Random();
Benoit Jacobe259f712010-10-19 21:56:26 -04002JacobiRotation<float> G;
Gael Guennebaud16c7b1d2009-09-03 11:17:16 +02003G.makeGivens(v.x(), v.y());
4cout << "Here is the vector v:" << endl << v << endl;
5v.applyOnTheLeft(0, 1, G.adjoint());
Aaron Franke5c22c7a2020-03-21 21:30:06 -04006cout << "Here is the vector J' * v:" << endl << v << endl;