LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / PartialRedux_count.cpp
blobc7b3097e4dfe5d1b359747d77dc4c377a76cb875
1 Matrix3d m = Matrix3d::Random();
2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the count of elements larger or equal than 0.5 of each row:" << endl << (m.array() >= 0.5).rowwise().count() << endl;