Sign in
third-party-mirror
/
eigen
/
941ca8d83f776b9a07153d3abef2877907aa0555
/
.
/
doc
/
snippets
/
PartialRedux_prod.cpp
blob: aacf09cbb76502067718673de8f526c40dda335a [
file
] [
log
] [
blame
]
Matrix3d
m
=
Matrix3d
::
Random
();
cout
<<
"Here is the matrix m:"
<<
endl
<<
m
<<
endl
;
cout
<<
"Here is the product of each row:"
<<
endl
<<
m
.
rowwise
().
prod
()
<<
endl
;