diff options
author | jofret | 2006-11-29 15:10:57 +0000 |
---|---|---|
committer | jofret | 2006-11-29 15:10:57 +0000 |
commit | 4a8740c5c245e9cfaf3fa6dbba678bb6be0565fd (patch) | |
tree | af02d0d35c3cff9ef6276537a3ae1fc941172583 /Doc/Elementary Functions/TrigonometricsDependeces.dot | |
parent | 1f6fbd4a3623c19ab83fab8407606928b7015966 (diff) | |
download | scilab2c-4a8740c5c245e9cfaf3fa6dbba678bb6be0565fd.tar.gz scilab2c-4a8740c5c245e9cfaf3fa6dbba678bb6be0565fd.tar.bz2 scilab2c-4a8740c5c245e9cfaf3fa6dbba678bb6be0565fd.zip |
Exp : Done for Real and Complex Type
Diffstat (limited to 'Doc/Elementary Functions/TrigonometricsDependeces.dot')
-rw-r--r-- | Doc/Elementary Functions/TrigonometricsDependeces.dot | 14 |
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 |