Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
gitlab.com
/
libeigen
/
eigen
/
ba7bfe110cf9a2df84b2691dd19f1cfe13d2356c
/
.
/
doc
/
snippets
/
PartialRedux_prod.cpp
blob: aacf09cbb76502067718673de8f526c40dda335a [
file
] [
log
] [
blame
]
Gael Guennebaud
cbbc6d9
2009-02-10 18:06:05 +0000
[
diff
] [
blame
]
1
Matrix3d
m
=
Matrix3d
::
Random
();
2
cout
<<
"Here is the matrix m:"
<<
endl
<<
m
<<
endl
;
3
cout
<<
"Here is the product of each row:"
<<
endl
<<
m
.
rowwise
().
prod
()
<<
endl
;