Sign in
eigen
/
mirror
/
63185be8b240ee1a9ef476af2fc06676d3d89fe0
/
.
/
doc
/
snippets
/
TopicAliasing_mult4.cpp
blob: 8a8992f6ca58572090f5cd3ee2a67f62ab572daa [
file
] [
log
] [
blame
]
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
;