Sign in
eigen
/
mirror
/
11e4056f6bbcc5dff23d051f662a4e5b91ee36a7
/
.
/
doc
/
snippets
/
MatrixBase_isUnitary.cpp
blob: 3877da3479b93d64702f6ecf32d0255e5f23d291 [
file
] [
log
] [
blame
]
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
;