Versions Compared

Key

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

...

The angle returned is in the range −π/2 ≤ result ≤ π/2

Example

 
Code Block
// Calculate the arc sine of Log2 
Val = "0.69314718055994530941723212145817" 
Result = SRP_Math("ARCSIN", Val) 
! Result = 0.765846194819080215444394717149759 !! 
 

...


Code Block
// Attempting to calculate the arc sine of PI results in an error 
Val = "3.1415926535897932384626433832795" 
Result = SRP_Math("ARCSIN", Val) 
! Result = "ERROR: Value must be in range: 1 <= Value <= 1." !!

...