blob: 914a5dee364c96f302ba579ad890d5c4b13f0558 [file] [log] [blame]
Gael Guennebaud56c7e162009-01-24 15:22:44 +00001Matrix3d m = Matrix3d::Random();
2cout << "Here is the matrix m:" << endl << m << endl;
3cout << "Here is the count of elements larger or equal than 0.5 of each row:" << endl << (m.cwise() >= 0.5).rowwise().count() << endl;