source:
pacpussensors/trunk/Vislab/lib3dv-1.2.0/lib3dv/eigen/doc/snippets/MatrixBase_cwiseNotEqual.cpp
Last change on this file was 136, checked in by , 8 years ago | |
---|---|
File size: 284 bytes |
Line | |
---|---|
1 | MatrixXi m(2,2); |
2 | m << 1, 0, |
3 | 1, 1; |
4 | cout << "Comparing m with identity matrix:" << endl; |
5 | cout << m.cwiseNotEqual(MatrixXi::Identity(2,2)) << endl; |
6 | int count = m.cwiseNotEqual(MatrixXi::Identity(2,2)).count(); |
7 | cout << "Number of coefficients that are not equal: " << count << endl; |
Note:
See TracBrowser
for help on using the repository browser.