mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-12 20:11:20 +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/PartialRedux_count.cpp
vendored
Normal file
6
third_party/eigen/doc/snippets/PartialRedux_count.cpp
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
Matrix3d m = Matrix3d::Random();
|
||||
cout << "Here is the matrix m:" << endl << m << endl;
|
||||
Matrix<ptrdiff_t, 3, 1> res = (m.array() >= 0.5).rowwise().count();
|
||||
cout << "Here is the count of elements larger or equal than 0.5 of each row:"
|
||||
<< endl;
|
||||
cout << res << endl;
|
Reference in New Issue
Block a user