Sign in
eigen
/
mirror
/
bd0cd1d67b7d93605da49924588ce4bd6a816124
/
.
/
doc
/
snippets
/
TopicAliasing_mult3.cpp
blob: b2bed6f3140d39296106318b2b3601af72fe4bca [
file
] [
log
] [
blame
]
MatrixXf
matA
(
2
,
2
);
matA
<<
2
,
0
,
0
,
2
;
matA
.
noalias
()
=
matA
*
matA
;
cout
<<
matA
;