summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Elementary Functions/TrigonometricsDependeces.dot14
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/Elementary Functions/TrigonometricsDependeces.dot b/Doc/Elementary Functions/TrigonometricsDependeces.dot
index f5581ef1..d92193d6 100644
--- a/Doc/Elementary Functions/TrigonometricsDependeces.dot
+++ b/Doc/Elementary Functions/TrigonometricsDependeces.dot
@@ -273,4 +273,18 @@ Sign_Real -> F77_Call;
// Call a abs function in F77 math lib
Abs_Real -> F77_Call;
+
+// -*- EXP -*-
+//
+// exp(a+i.b) = exp(a).cos(b) + i.exp(a)sin(b)
+Exp_Complex -> {
+ Exp_Real
+ Cos_Real
+ Sin_Real
+};
+
+// Call a exp function in F77 math lib
+Exp_Real -> F77_Call;
+
+
} \ No newline at end of file