diff options
Diffstat (limited to 'eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp')
-rw-r--r-- | eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp b/eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp deleted file mode 100644 index 88496b2..0000000 --- a/eigen/doc/snippets/tut_arithmetic_transpose_conjugate.cpp +++ /dev/null @@ -1,12 +0,0 @@ -MatrixXcf a = MatrixXcf::Random(2,2); -cout << "Here is the matrix a\n" << a << endl; - -cout << "Here is the matrix a^T\n" << a.transpose() << endl; - - -cout << "Here is the conjugate of a\n" << a.conjugate() << endl; - - -cout << "Here is the matrix a^*\n" << a.adjoint() << endl; - - |