Page History
...
| Code Block |
|---|
Result = SRP_Math("ARCCOS", Value, "", DecimalPlaces, ScientificNotation) |
Returns
The arc cosine of Value.
Remarks
The ARCCOS operation computes the arc cosine of Value. Value must be in the range −1 ≤ value ≤ 1, else the following error is returned:
...
The angle returned is in the range 0 ≤ result ≤ π
Example
| Code Block |
|---|
// Calculate the arc cosine
Val = "0.69314718055994530941723212145817"
Result = SRP_Math("ARCCOS", Val)
!! Result = 0.804950131975816403786926974489992 !! |
...