1 MatrixXcf a
= MatrixXcf::Random(2,2);
2 cout
<< "Here is the matrix a\n" << a
<< endl
;
4 cout
<< "Here is the matrix a^T\n" << a
.transpose() << endl
;
7 cout
<< "Here is the conjugate of a\n" << a
.conjugate() << endl
;
10 cout
<< "Here is the matrix a^*\n" << a
.adjoint() << endl
;