Talk:Trigonometric functions: Difference between revisions

Content added Content deleted
(a final note on precise sin)
mNo edit summary
Line 247: Line 247:
What I wanted was that this little program shows 30 correct digits
What I wanted was that this little program shows 30 correct digits
(the value to be tested for being the 'real' value of sin(0.1) rounded to 30 digits)
(the value to be tested for being the 'real' value of sin(0.1) rounded to 30 digits)
/* REXX */
/* REXX */
Numeric Digits 30
Numeric Digits 30
Say sin(0.1) /* if 'my' sin is included an internal procedure */
Say sin(0.1) /* if 'my' sin is included an internal procedure */
Say sin(0.1,,30) /* if it is used as external procedure */
Say sin(0.1,,30) /* if it is used as external procedure */


--[[User:Walterpachl|Walterpachl]] 07:51, 24 June 2012 (UTC)
--[[User:Walterpachl|Walterpachl]] 07:51, 24 June 2012 (UTC)