Sign in
eigen
/
mirror
/
904f35d19497b5442a80a30c42d00fc52c22fe36
/
.
/
doc
/
snippets
/
MatrixBase_isUnitary.cpp
blob: 3877da3479b93d64702f6ecf32d0255e5f23d291 [
file
]
Matrix3d
m
=
Matrix3d
::
Identity
();
m
(
0
,
2
)
=
1e-4
;
cout
<<
"Here's the matrix m:"
<<
endl
<<
m
<<
endl
;
cout
<<
"m.isUnitary() returns: "
<<
m
.
isUnitary
()
<<
endl
;
cout
<<
"m.isUnitary(1e-3) returns: "
<<
m
.
isUnitary
(
1e-3
)
<<
endl
;