blob: 1c3b3a28f9b3659ef4c3aa12df49a18eefc0d31c [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001Matrix3d m = Matrix3d::Random();
2cout << "Here is the matrix m:" << endl << m << endl;
Austin Schuh189376f2018-12-20 22:11:15 +11003Matrix<ptrdiff_t, 3, 1> res = (m.array() >= 0.5).rowwise().count();
4cout << "Here is the count of elements larger or equal than 0.5 of each row:" << endl;
5cout << res << endl;