This website works better with JavaScript
홈
탐색
도움말
로그인
SRI-DYZBC2
/
Vehicle-cpp
Watch
2
Star
0
포크
0
파일
이슈
0
풀 리퀘스트
0
위키
트리:
e6b2cb2e99
브랜치
태그
master
Vehicle-cpp
/
zjw
/
工控机安装资料
/
eigen-3.4.0
/
doc
/
snippets
/
TopicAliasing_mult4.cpp
TopicAliasing_mult4.cpp
102 B
히스토리
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;