Sign in
eigen
/
mirror
/
9452eb38f812194a676edc1b9eb9d08b7bc0f297
/
.
/
doc
/
snippets
/
MatrixBase_cwiseProduct.cpp
blob: 1db3a11324b6a3abe53c4d4d049d1f2d2b38166a [
file
]
Matrix3i
a
=
Matrix3i
::
Random
(),
b
=
Matrix3i
::
Random
();
Matrix3i
c
=
a
.
cwiseProduct
(
b
);
cout
<<
"a:\n"
<<
a
<<
"\nb:\n"
<<
b
<<
"\nc:\n"
<<
c
<<
endl
;