Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / PartialRedux_minCoeff.cpp
blobd717bc0d18905bebb7809f39ba1cc1be75280bd5
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;