Gael Guennebaud | c10f069 | 2008-07-21 00:34:46 +0000 | [diff] [blame^] | 1 | Matrix3d m = Matrix3d::Identity(); |
Benoit Jacob | 3b94436 | 2008-06-24 15:13:00 +0000 | [diff] [blame] | 2 | m(0,2) = 1e-4; |
3 | cout << "Here's the matrix m:" << endl << m << endl; | ||||
4 | cout << "m.isUnitary() returns: " << m.isUnitary() << endl; | ||||
5 | cout << "m.isUnitary(1e-3) returns: " << m.isUnitary(1e-3) << endl; |