Sign in
android
/
platform
/
external
/
eigen
/
bcf7b2918
/
.
/
doc
/
snippets
/
MatrixBase_adjoint.cpp
blob: 661803ca14a80a37749aa14e72a5242ab6868053 [
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
;