Sign in
eigen
/
mirror
/
7e0972963edfa2cd4bcb3be56aa1f6e7cc9293cd
/
.
/
doc
/
snippets
/
Cwise_product.cpp
blob: d614b1c35956e989848cc385162306da923510ad [
file
]
// SPDX-FileCopyrightText: The Eigen Authors
// SPDX-License-Identifier: MPL-2.0
Array33i
a
=
Array33i
::
Random
(),
b
=
Array33i
::
Random
();
Array33i
c
=
a
*
b
;
cout
<<
"a:\n"
<<
a
<<
"\nb:\n"
<<
b
<<
"\nc:\n"
<<
c
<<
endl
;