Sign in
third-party-mirror
/
eigen
/
941ca8d83f776b9a07153d3abef2877907aa0555
/
.
/
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
;