2009-01-24 23:22:44 +08:00
|
|
|
Matrix3d m = Matrix3d::Random();
|
|
|
|
cout << "Here is the matrix m:" << endl << m << endl;
|
2010-01-07 00:18:38 +08:00
|
|
|
cout << "Here is the count of elements larger or equal than 0.5 of each row:" << endl << (m.array() >= 0.5).rowwise().count() << endl;
|