Sign in
eigen
/
mirror
/
12f8bd12a27a9359e0383aed3f44436c08ea3f92
/
.
/
doc
/
snippets
/
MatrixBase_noalias.cpp
blob: 3b54a79a6711e5801c2fa335b84f373309c320de [
file
] [
log
] [
blame
]
Matrix2d
a
,
b
,
c
;
a
<<
1
,
2
,
3
,
4
;
b
<<
5
,
6
,
7
,
8
;
c
.
noalias
()
=
a
*
b
;
// this computes the product directly to c
cout
<<
c
<<
endl
;