blob: 4b733c3064a6fbcbd2d6ec9cd63d20db1f04b880 [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001Vector2f v = Vector2f::Random();
2JacobiRotation<float> G;
3G.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;