Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
external
/
gitlab.com
/
libeigen
/
eigen
/
9466e5f94edbff1219cd48639fd0ef80e11b85a9
/
.
/
doc
/
snippets
/
PartialRedux_minCoeff.cpp
blob: 1256cee5eed1b4d506791b93e5041af44f7faf68 [
file
] [
log
] [
blame
]
Benoit Jacob
9466e5f
2008-08-19 04:30:28 +0000
[
diff
] [
blame^
]
1
Matrix3d
m
=
Matrix3d
::
Random
();
2
cout
<<
"Here is the matrix m:"
<<
endl
<<
m
<<
endl
;
3
cout
<<
"Here is the minimum of each column:"
<<
endl
<<
m
.
colwise
().
minCoeff
()
<<
endl
;