diff options
-rw-r--r-- | ChangeLog | 13 | ||||
-rw-r--r-- | Doc/Elementary Functions/TrigonometricsDependeces.dot | 8 | ||||
-rw-r--r-- | TODO | 12 |
3 files changed, 28 insertions, 5 deletions
@@ -1,3 +1,16 @@ +2006-11-29 Bruno JOFRET <brunojofret@inria.fr> + + * Pythagore [pythag]: + Done for Real Type. + * LAPACK [dlamch]: + Add dlamch.help to keep an eye on each option. + * Icrease logarithm [log1p]: + Done for Real Type. + * Exponential [exp]: + Done for Real and Complex Type. + * ArcTangeante2 [atan2]: + Done for Real Type. + 2006-11-28 Bruno JOFRET <bruno.jofret@inria.fr> * Logarithm [log]: diff --git a/Doc/Elementary Functions/TrigonometricsDependeces.dot b/Doc/Elementary Functions/TrigonometricsDependeces.dot index d92193d6..c18100c3 100644 --- a/Doc/Elementary Functions/TrigonometricsDependeces.dot +++ b/Doc/Elementary Functions/TrigonometricsDependeces.dot @@ -38,6 +38,9 @@ Tan_Complex [label="tan(C)", comment="wtan"]; Tan_Hyperbolic_Real [label="tanh(R)"]; Tan_Hyperbolic_Complex [label="tanh(C)"]; +// ArcTaneante2 +ATan2_Real [label="atan2(R)"]; + // Exponentielle Exp_Real [label="exp(R)"]; Exp_Complex [label="exp(C)"]; @@ -287,4 +290,9 @@ Exp_Complex -> { Exp_Real -> F77_Call; +// -*- ATAN2 -*- +// +// Call atan2 function in C math lib +ATan2_Real -> C_Call; + }
\ No newline at end of file @@ -5,7 +5,7 @@ ## Made by Bruno JOFRET <bruno.jofret@inria.fr> ## ## Started on Tue Nov 21 15:22:58 2006 jofret -## Last update Wed Nov 29 11:57:47 2006 jofret +## Last update Wed Nov 29 17:34:49 2006 jofret ## ## Copyright INRIA 2006 ## @@ -20,17 +20,19 @@ BJ - Evaluated and drawn : + abs : [done R] + sqrt : [done R & C] + pythag: [done R] + + Log1p : [done R] + + exp : [done R & C] + + atan2 : [done R] + BJ - Evaluate and draw a graph of function dependences. + ch : Fixme (R & C) + sh : Fixme (R & C) + tanh : Fixme (R & C) - + atan2 : Fixme (R) - + exp : Fixme (R & C) - + Logp1 : Fixme (R) BJ - Find a way to code complex type taking care of double/float precision. BJ - Listing of atomic call and library dependences. -BJ - Explore dlamch uses 'e' 'u' 'o' ???
\ No newline at end of file +BJ - Explore dlamch uses 'e' 'u' 'o' + Added help file for dlamch use...
\ No newline at end of file |