Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
gitlab.com
/
libeigen
/
eigen
/
f9659d91f1b5486964e0c66187f4a0cbcac2accf
/
.
/
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
;