Sign in
eigen
/
mirror
/
dec47a64930b2a5b68c55706cbdba7f945781d0e
/
.
/
doc
/
snippets
/
TopicAliasing_mult5.cpp
blob: 1a36defde3b99fab572dae66c1f11d33179945aa [
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
).
eval
().
cwiseAbs
();
cout
<<
A
;