blob: 7f0a105d67baa74f872ba0299c4c71e599180384 [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;
Austin Schuh189376f2018-12-20 22:11:15 +11006Index count = m.cwiseNotEqual(MatrixXi::Identity(2,2)).count();
Brian Silverman72890c22015-09-19 14:37:37 -04007cout << "Number of coefficients that are not equal: " << count << endl;