blob: 3877da3479b93d64702f6ecf32d0255e5f23d291 [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001Matrix3d m = Matrix3d::Identity();
2m(0,2) = 1e-4;
3cout << "Here's the matrix m:" << endl << m << endl;
4cout << "m.isUnitary() returns: " << m.isUnitary() << endl;
5cout << "m.isUnitary(1e-3) returns: " << m.isUnitary(1e-3) << endl;