Sign in
third-party-mirror
/
eigen
/
eae6db0ca08e15a56faa194349561649dde541dd
/
.
/
doc
/
snippets
/
TopicAliasing_mult4.cpp
blob: 9a82322d636c2423c76e158d9fffba4338f40100 [
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
;