Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
72890c2da170577883e6431bd92d612716a31b85
/
.
/
doc
/
snippets
/
MatrixBase_noalias.cpp
blob: 3b54a79a6711e5801c2fa335b84f373309c320de [
file
] [
log
] [
blame
]
Brian Silverman
72890c2
2015-09-19 14:37:37 -0400
[
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
;