Sign in
eigen
/
mirror
/
c9b046d5d5eba6e3f454ec2a125d74a21c61d988
/
.
/
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
;