Sign in
◑
Theme
eigen
/
mirror
/
a3256d78d849b6978356a587038c3c62d4437bc9
/
.
/
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
;