blob: 4b733c3064a6fbcbd2d6ec9cd63d20db1f04b880 [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());
6cout << "Here is the vector J' * v:" << endl << v << endl;