Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
gitlab.com
/
libeigen
/
eigen
/
f9659d91f1b5486964e0c66187f4a0cbcac2accf
/
.
/
doc
/
snippets
/
MatrixBase_prod.cpp
blob: d2f27bdc3279c836d21d1fc2f2a4598724efe5c1 [
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 all the coefficients:"
<<
endl
<<
m
.
prod
()
<<
endl
;