Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
gitlab.com
/
libeigen
/
eigen
/
8ce341caf2947e4b5ac4580c20254ae7d828b009
/
.
/
doc
/
snippets
/
TopicAliasing_mult1.cpp
blob: cd7e9004c92f5b6ea25bbc295d92fcbf541fdc02 [
file
] [
log
] [
blame
]
Jitse Niesen
42a050d
2010-12-27 15:06:55 +0000
[
diff
] [
blame
]
1
MatrixXf
matA
(
2
,
2
);
2
matA
<<
2
,
0
,
0
,
2
;
3
matA
=
matA
*
matA
;
4
cout
<<
matA
;