From 11462c1a291bdb9c0ac27db25fef364e51632484 Mon Sep 17 00:00:00 2001 From: Mark Borgerding Date: Fri, 16 May 2014 13:45:35 -0400 Subject: [PATCH] AsciiQuickReference: added .real(), .imag() --- doc/AsciiQuickReference.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/AsciiQuickReference.txt b/doc/AsciiQuickReference.txt index 7258cda99..398482b13 100644 --- a/doc/AsciiQuickReference.txt +++ b/doc/AsciiQuickReference.txt @@ -167,6 +167,8 @@ x.cross(y) // cross(x, y) Requires #include A.cast(); // double(A) A.cast(); // single(A) A.cast(); // int32(A) +A.real(); // real(A) +A.imag(); // imag(A) // if the original type equals destination type, no work is done // Note that for most operations Eigen requires all operands to have the same type: