Skip to content
GitLab
Explore
Sign in
libRaptorQ
external
eigen3
doc
snippets
TopicAliasing_mult4.cpp
Find file
Normal view
History
Permalink
TopicAliasing_mult4.cpp
101 B
Newer
Older
Update to Eigen 3.3.4
Luker
committed
Mar 29, 2018
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
;