source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp@ 136

Last change on this file since 136 was 136, checked in by ldecherf, 7 years ago

Doc

File size: 277 bytes
Line 
1MatrixXcf a = MatrixXcf::Random(2,2);
2cout << "Here is the matrix a\n" << a << endl;
3
4cout << "Here is the matrix a^T\n" << a.transpose() << endl;
5
6
7cout << "Here is the conjugate of a\n" << a.conjugate() << endl;
8
9
10cout << "Here is the matrix a^*\n" << a.adjoint() << endl;
11
12
Note: See TracBrowser for help on using the repository browser.