Page History
...
| Code Block |
|---|
"ERROR: Value must be > 0." |
Example
| Code Block |
|---|
// Take the common log of PI
Val = "3.1415926535897932384626433832795"
Result = SRP_Math("LOG10", Val)
!! Result = 0.497149872694133854351268288290898 !! |
...
| Code Block |
|---|
// Attempting to take the common log of 0 results in an error
Result = SRP_Math("LOG10", 0)
!! Result = "ERROR: Value must be > 0." !! |
...