Versions Compared

Key

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

...

Code Block
Result = SRP_Math("ARCSIN", Value, "", DecimalPlaces, ScientificNotation)

Returns

The arc sine of Value.

Remarks

The ARCSIN operation computes the arc cosine of Value. Value must be in the range −1 ≤ value ≤ 1, else the following error is returned:

...

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 !! 

...