blob: 6a2e4fb6c40e95ffcd49a1564fd67d565d2d052b [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001MatrixXi 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;