Page History
...
| Code Block |
|---|
"ERROR: Value must be in range: 1 < Value < 1." |
Example
| Code Block |
|---|
// Calculate the hyperbolic arc tangent of Log2
Val = "0.227064512498507649434129923403947"
Result = SRP_Math("ARCTANH", Val)
!! Result = 0.2310922164773755269152834064990119 !! |
...
| Code Block |
|---|
// Attempting to calculate the hyperbolic arc tangent of PI results in an error
Val = "3.1415926535897932384626433832795"
Result = SRP_Math("ARCTANH", Val)
!! Result = "ERROR: Value must be in range: 1 < Value < 1." !! |
...