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