Versions Compared

Key

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

...

You can use MULT for short.

Example

 
Code Block
// Multiply PI by 3 
Val1 = "3.1415926535897932384626433832795" 
Val2 = "3" 
Result = SRP_Math("MULTIPLY", Val1, Val2) 
!! Result = 9.4247779607693797153879301498385 !! 
 

...

Code Block
// Mulitply PI by E 
Val1 = "3.1415926535897932384626433832795" 
Val2 = "2.7182818284590452353602874713527" 
Result = SRP_Math("MULT", Val1, Val2) 
!! Result = 8.53973422267356706546355086954668447174445893592492906242717965 !!

 

...