Versions Compared

Key

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

...

The SINH operation computes the hyperbolic 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 sine of Log2 
Val = "0.227064512498507649434129923403947" 
Result = SRP_Math("SINH", Val) 
!! Result = 0.2290207250819349187735959203703576 !! 
 

...

Code Block
// Calculate the hyperbolic sine of PI 
Val = "3.1415926535897932384626433832795" 
Result = SRP_Math("SINH", Val) 
!! Result = 11.5487393572577483779773343153884 !!

 

...