Function reference · Trigonometry
atan
Computes the principal arctangent in radians.
Known inputs are reduced to exact multiples of pi when possible. Positive and negative infinity map to plus or minus pi/2.
Examples
These examples use Nerdamer Notation.
Use an exact inverse-trig value.
atan(1) // → (1/4)*pi
Keep a symbolic arctangent.
atan(x)Interfaces
The same operation is available through the interfaces below.
Nerdamer Notation
Use this form inside input passed to nerdamer(...).
atan(arg1)
nerdamer.atan
Call the operation through the default nerdamer import.
nerdamer.atan(x: ExpressionInput): Expression
Parameters
| Name | Type | Description |
|---|---|---|
x | ExpressionInput | The input expression. |
Returns
Expression — The arctangent of `x` in radians.
