Sign in
eigen
/
mirror
/
c09151a2c208abda2bb438f3cb3234b1128e7cf7
/
.
/
doc
/
snippets
/
MatrixBase_isIdentity.cpp
blob: ea535c786d6fcffdb63cf34400ac2552d68bb75e [
file
] [
log
] [
blame
]
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
;