Sign in
third-party-mirror
/
eigen
/
2434cfd1f4e6e30b715ae8e8b879bc3cf7326ad2
/
.
/
doc
/
snippets
/
TopicAliasing_mult1.cpp
blob: 4ae2a4715e60543c1fe6c4e1762753465fd98e34 [
file
] [
log
] [
blame
]
MatrixXf
matA
(
2
,
2
);
matA
<<
2
,
0
,
0
,
2
;
matA
=
matA
*
matA
;
cout
<<
matA
;