aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_rowwise.cpp
blob: ae93964eae3da8d7f9d674f754a4f16ecfaac349 (plain)
1
2
3
4
5
Matrix3d m = Matrix3d::Random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Here is the sum of each row:" << endl << m.rowwise().sum() << endl;
cout << "Here is the maximum absolute value of each row:"
     << endl << m.cwiseAbs().rowwise().maxCoeff() << endl;