This website works better with JavaScript
Home
Explore
Help
Register
Sign In
XuMengJie
/
agv_navigation_ws
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Branch:
master
Branches
Tags
master
agv_navigati...
/
fast_gicp
/
thirdparty
/
Eigen
/
doc
/
snippets
/
TopicAliasing_mult4.cpp
TopicAliasing_mult4.cpp
102 B
Permalink
History
Raw
1
2
3
4
5
MatrixXf A(2,2), B(3,2);
B << 2, 0, 0, 3, 1, 1;
A << 2, 0, 0, -2;
A = (B * A).cwiseAbs();
cout << A;