blob: d457e06ce820716417cddf58bcbab926a08b5c8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
##
##
##
## TODO
## Made by Bruno JOFRET <bruno.jofret@inria.fr>
##
## Started on Tue Nov 21 15:22:58 2006 jofret
## Last update Mon Dec 4 16:55:06 2006 jofret
##
## Copyright INRIA 2006
##
BJ - Evaluated and drawn - have to be implemented in C :
+ cos : [done R & C]
+ acos : [done R & C]
+ sin : [done R & C]
+ asin : [done R & C]
+ tan : [done R & C]
+ atan : [done R & C]
+ ch : [done R & C]
+ acosh : [done R & C]
+ sh : [done R & C]
+ asinh : [done R & C]
+ tanh : [done R & C]
+ atanh : [done R & C]
+ log : [done R & C]
+ exp : [done R & C]
+ sqrt : [done R & C]
+ sign : [done R]
+ abs : [done R]
+ pythag: [done R]
+ Log1p : [done R]
+ atan2 : [done R]
BJ - Evaluate and draw a graph of function dependences.
+ ...
BJ - Find a way to code complex type taking care of double/float precision.
+ C struct ?? Did it this way but easy to change.
+ double[2] // float[2] ??
BJ - Listing of atomic call and library dependences.
BJ - Explore dlamch uses 'e' 'u' 'o'
Added help file for dlamch use...
BJ - Start coding C basic functions with libmath link.
BJ - Bench for precision between F77 and C Math lib.
For example : atan2 / log1p
|