You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
241 B

  1. Matrix3d m = 10000 * Matrix3d::Identity();
  2. m(0,2) = 1;
  3. cout << "Here's the matrix m:" << endl << m << endl;
  4. cout << "m.isDiagonal() returns: " << m.isDiagonal() << endl;
  5. cout << "m.isDiagonal(1e-3) returns: " << m.isDiagonal(1e-3) << endl;