blob: 6f8ec054aed538cc2939ce74fd246370fa1c0111 [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());
Austin Schuhc55b0172022-02-20 17:52:35 -08006cout << "Here is the vector J' * v:" << endl << v << endl;