1
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2025-05-29 09:36:55 +08:00
eigen/doc/snippets/MatrixBase_isIdentity.cpp
Benoit Jacob 84934ea217 - move: DerivedTraits becomes MatrixBase::Traits
- the static constants are private again in the Derived classes
- more documentation and code snippets
- new isDiagonal() method
2008-01-06 16:35:21 +00:00

6 lines
235 B
C++

Matrix3d m = Matrix3d::identity();
m(0,2) = 1e-4;
cout << "Here's the matrix m:" << endl << m << endl;
cout << "m.isIdentity() returns: " << m.isIdentity() << endl;
cout << "m.isIdentity(1e-3) returns: " << m.isIdentity(1e-3) << endl;