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