Sign in
eigen
/
mirror
/
d2a70fe4e2c0782f14767583c6f63b58c7a2fb4b
/
.
/
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
;