Versions Compared

Key

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

...

Code Block
Result = SRP_Math("ARCSINH", Value, "", DecimalPlaces, ScientificNotation)

Returns

The hyperbolic arc sine of Value.

Remarks

The ARCSINH operation computes the hyperbolic arc sine of Value. Value can be any number, so no error is generated for this operation. Likewise, the result can be any number.

Example

Code Block
// Calculate the hyperbolic arc sine of Log2 
Val = "0.69314718055994530941723212145817" 
Result = SRP_Math("ARCSINH", Val) 
!! Result = 0.647043481083189102752188351969942 !! 

...