Versions Compared

Key

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

...

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

Returns

The arc tangent of Value.

Remarks

The ARCTAN operation computes the arc tangent of Value. Value can be any number, so no error is generated for this operation.

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

Example

Code Block
// Calculate the arc tangent of Log2 
Val = "0.69314718055994530941723212145817" 
Result = SRP_Math("ARCTAN", Val) 
!! Result = 0.606111934732855002385988269576687 !! 

...