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