Versions Compared

Key

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

...

You can use SIGDIG for short.

Example

 
Code Block
// Count the significant digits of 000000364.8745100000 
Result = SRP_Math("SIGDIGITS", "000000364.8745100000") 
!! Result = 8 !! 
 

...

Code Block
// Count the significant digits of PI 
Val = "3.1415926535897932384626433832795" 
Result = SRP_Math("SIGDIG", Val) 
!! Result = 32 !!

 

...