Versions Compared

Key

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

...

Value can be any decimal or whole number, but if it is too large, 0.0 is returned. There is no error returned because the limit is based on available memory. Anything larger than 1000 causes the number to have so many digits, even the OI debugger fails to display it.

Example

 
Code Block
// Exponential function of PI 
Val = "3.1415926535897932384626433832795" 
Result = SRP_Math("EXP", Val) 
!! Result = 23.1406926327792690057290863679485 !! 
 

...

Code Block
// Exponential function of 100 
Val = "100" 
Result = SRP_Math("EXP", Val) 
!! Result = 26881171418161354484126255515800000000000000.0 !!

...