Sign in
third-party-mirror
/
eigen
/
f6c457cdc27f232d7cf7f4f9b801aa8c3f9f18c6
/
.
/
doc
/
snippets
/
MatrixBase_cwiseProduct.cpp
blob: 79540a9d5f83ef90bb78cd2f5bae72cf982d4e76 [
file
] [
log
] [
blame
]
Matrix3i
a
=
Matrix3i
::
Random
(),
b
=
Matrix3i
::
Random
();
Matrix3i
c
=
a
.
cwiseProduct
(
b
);
cout
<<
"a:\n"
<<
a
<<
"\nb:\n"
<<
b
<<
"\nc:\n"
<<
c
<<
endl
;