Sign in
eigen
/
mirror
/
7b5d32b7c94a6d4ceaba1cd106feb2ab5e4b4e91
/
.
/
doc
/
snippets
/
MatrixBase_adjoint.cpp
blob: 4680d5938db43202ab6cfeb2efa87bdb387d4bb0 [
file
] [
log
] [
blame
]
Matrix2cf
m
=
Matrix2cf
::
Random
();
cout
<<
"Here is the 2x2 complex matrix m:"
<<
endl
<<
m
<<
endl
;
cout
<<
"Here is the adjoint of m:"
<<
endl
<<
m
.
adjoint
()
<<
endl
;