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