Files
Efim Beshmenev 7f9dc067a1 Initial commit
2026-07-10 19:16:42 +03:00

7 lines
236 B
C++

Vector2f v = Vector2f::Random();
JacobiRotation<float> G;
G.makeGivens(v.x(), v.y());
cout << "Here is the vector v:" << endl << v << endl;
v.applyOnTheLeft(0, 1, G.adjoint());
cout << "Here is the vector J' * v:" << endl << v << endl;