00001 MatrixXcf a = MatrixXcf::Random(2,2); 00002 cout << "Here is the matrix a\n" << a << endl; 00003 00004 cout << "Here is the matrix a^T\n" << a.transpose() << endl; 00005 00006 00007 cout << "Here is the conjugate of a\n" << a.conjugate() << endl; 00008 00009 00010 cout << "Here is the matrix a^*\n" << a.adjoint() << endl; 00011 00012