Sign in
nest-open-source
/
nest-cam
/
v350
/
eigen
/
9d75fdbcd2b5a2fdab03a859ddefda95ce1217ed
/
.
/
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
;