aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_adjoint.cpp
blob: 661803ca14a80a37749aa14e72a5242ab6868053 (plain)
1
2
3
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;