| It's well known that sin, cos and tan have been added in arc3, but what about the inverse of these funcitons? I know the patch is trivial, but if sin, cos and tan are there, these functions definitely must be there too. --- ac.scm 2009-06-21 00:41:56.000000000 -0300
+++ ac.scm 2009-06-22 11:23:19.000000000 -0300
@@ -1382,6 +1382,9 @@
(xdef sin sin)
(xdef cos cos)
(xdef tan tan)
+(xdef asin asin)
+(xdef acos acos)
+(xdef atan atan)
(xdef log log)
(define (codestring s)
|