| Description: |
Returns the arc cosine of the value specified. |
| Syntax: |
result=acos(value) |
| Information: |
| result | double |
The arc cosine value |
| value | double |
The value you want the arc cosine of |
|
| Notes: |
Gives the angle (in radians) of the cosine passed to it. |
| Examples: |
Dim result as double
result=acos(.5) //result is 1.0471976 |