blob: c7b3097e4dfe5d1b359747d77dc4c377a76cb875 [file] [log] [blame]
Gael Guennebaud56c7e162009-01-24 15:22:44 +00001Matrix3d m = Matrix3d::Random();
2cout << "Here is the matrix m:" << endl << m << endl;
Gael Guennebaud7d3fe692010-01-06 17:18:38 +01003cout << "Here is the count of elements larger or equal than 0.5 of each row:" << endl << (m.array() >= 0.5).rowwise().count() << endl;