source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/snippets/MatrixBase_cwiseNotEqual.cpp@ 136

Last change on this file since 136 was 136, checked in by ldecherf, 7 years ago

Doc

File size: 284 bytes
Line 
1MatrixXi m(2,2);
2m << 1, 0,
3 1, 1;
4cout << "Comparing m with identity matrix:" << endl;
5cout << m.cwiseNotEqual(MatrixXi::Identity(2,2)) << endl;
6int count = m.cwiseNotEqual(MatrixXi::Identity(2,2)).count();
7cout << "Number of coefficients that are not equal: " << count << endl;
Note: See TracBrowser for help on using the repository browser.