mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-20 16:49:38 +08:00

- 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;
|