Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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 !!
 
 
Code Block
// Attempting to calculate the hyperbolic arc cosine of Log2 results in an error 
Val = "0.69314718055994530941723212145817" 
Result = SRP_Math("ARCCOSH", Val) 
!! Result = "ERROR: Value must be >= 1." !!