Sign in
nest-open-source
/
nest-cam
/
v350
/
eigen
/
9d75fdbcd2b5a2fdab03a859ddefda95ce1217ed
/
.
/
doc
/
snippets
/
MatrixBase_cwiseProduct.cpp
blob: 1db3a11324b6a3abe53c4d4d049d1f2d2b38166a [
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
;