Sign in
nest-open-source
/
nest-cam
/
v350
/
eigen
/
9d75fdbcd2b5a2fdab03a859ddefda95ce1217ed
/
.
/
doc
/
snippets
/
TopicAliasing_mult1.cpp
blob: cd7e9004c92f5b6ea25bbc295d92fcbf541fdc02 [
file
] [
log
] [
blame
]
MatrixXf
matA
(
2
,
2
);
matA
<<
2
,
0
,
0
,
2
;
matA
=
matA
*
matA
;
cout
<<
matA
;