mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-13 04:13:58 +08:00
Move eigen to third party (#282)
* remove useless statement * Add eigen to third_party dir * remove reducdant lines
This commit is contained in:
6
third_party/eigen/doc/snippets/Jacobi_makeGivens.cpp
vendored
Normal file
6
third_party/eigen/doc/snippets/Jacobi_makeGivens.cpp
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
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;
|
Reference in New Issue
Block a user