blob: eb3656f4cacdad0964015b13299bd00f8a32aedb [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.cwiseEqual(MatrixXi::Identity(2,2)) << endl;
6int count = m.cwiseEqual(MatrixXi::Identity(2,2)).count();
7cout << "Number of coefficients that are equal: " << count << endl;