Sign in
nest-open-source
/
nest-cam
/
v350
/
eigen
/
9d75fdbcd2b5a2fdab03a859ddefda95ce1217ed
/
.
/
doc
/
snippets
/
TopicAliasing_mult4.cpp
blob: 01c1c6d77c5e4d75ab5f63756737367c7c271196 [
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
;