Sign in
eigen
/
mirror
/
1fe0b749042320501c59378f2860d9322b0c6e19
/
.
/
doc
/
snippets
/
Cwise_product.cpp
blob: 714d66d210e36b0e53a7e8eef37b3504f92ca3aa [
file
] [
log
] [
blame
]
Array33i
a
=
Array33i
::
Random
(),
b
=
Array33i
::
Random
();
Array33i
c
=
a
*
b
;
cout
<<
"a:\n"
<<
a
<<
"\nb:\n"
<<
b
<<
"\nc:\n"
<<
c
<<
endl
;