mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
6 lines
235 B
C++
6 lines
235 B
C++
Vector2f v = Vector2f::Random();
|
|
PlanarRotation<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; |