Versions Compared

Key

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

...

Code Block
"ERROR: Value must be > 0."

Example

 
Code Block
// Take the natural log of PI 
Val = "3.1415926535897932384626433832795" 
Result = SRP_Math("LOG", Val) 
!! Result = 1.14472988584940017414342735135306 !! 
 

...

Code Block
// Attempting to take the natural log of 0 results in an error 
Result = SRP_Math("LOG", 0) 
!! Result = "ERROR: Value must be > 0." !!

 

...