2-Jul-96, 6:54:35 Routine Save for Trigonometry Library function $%COS^MATH ; ; Unless otherwise noted, the code below ; was approved in document X11/95-12 ; ; If corrections have been applied, ; first the original line appears, ; with three semicolons at the beginning of the line. ; ; Then the source of the correction is acknowledged, ; then the corrected line appears, followed by a ; line containing three semicolons. ; COS(X,PREC) ; New L,LIM,K,SIGN,VALUE ; ;;; Set:X[":" X=$%DMSDEC^MATH(X,12) ; Winfried Gerum (8 June 1995) ; Comment: The official description does not mention than ; the function may also be called with the first ; parameter in degrees, minutes and seconds. Set:X[":" X=$%DMSDEC^MATH(X) ;;; ; Set PREC=$Get(PREC,11) Set X=X#(2*$%PI^MATH()) Set (VALUE,L)=1,SIGN=-1 Set LIM=$Select((PREC+3)'>11:PREC+3,1:11),@("LIM=1E-"_LIM) For K=2:2 Do Quit:($Translate(L,"-")PI X=2*PI-X Set:X*2>PI X=PI-X,SIGN=-1 ; Set XX=X*X,A(1)=-0.4999999963,A(2)=0.0416666418 Set A(3)=-0.0013888397,A(4)=0.0000247609,A(5)=-0.0000002605 Set (X,R)=1 For N=1:1:5 Set X=X*XX,R=A(N)*X+R Quit R*SIGN ;=== ; ; ;