blob: ae93964eae3da8d7f9d674f754a4f16ecfaac349 [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001Matrix3d m = Matrix3d::Random();
2cout << "Here is the matrix m:" << endl << m << endl;
3cout << "Here is the sum of each row:" << endl << m.rowwise().sum() << endl;
4cout << "Here is the maximum absolute value of each row:"
5 << endl << m.cwiseAbs().rowwise().maxCoeff() << endl;