Sign in
third-party-mirror
/
eigen
/
ec30e0afa2dbef4ab6fdb11be981e0aae638bc4f
/
.
/
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
;