Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
gitlab.com
/
libeigen
/
eigen
/
7d3fe69efff24ff41a81f0bbf3bd4b4906612579
/
.
/
doc
/
snippets
/
MatrixBase_noalias.cpp
blob: 3b54a79a6711e5801c2fa335b84f373309c320de [
file
] [
log
] [
blame
]
Gael Guennebaud
7d3fe69
2010-01-06 17:18:38 +0100
[
diff
] [
blame^
]
1
Matrix2d
a
,
b
,
c
;
a
<<
1
,
2
,
3
,
4
;
b
<<
5
,
6
,
7
,
8
;
2
c
.
noalias
()
=
a
*
b
;
// this computes the product directly to c
3
cout
<<
c
<<
endl
;