mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
84934ea217
- the static constants are private again in the Derived classes - more documentation and code snippets - new isDiagonal() method
6 lines
215 B
C++
6 lines
215 B
C++
Matrix3d m = Matrix3d::zero();
|
|
m(0,2) = 1e-4;
|
|
cout << "Here's the matrix m:" << endl << m << endl;
|
|
cout << "m.isZero() returns: " << m.isZero() << endl;
|
|
cout << "m.isZero(1e-3) returns: " << m.isZero(1e-3) << endl;
|