atan¶
Result = atan(expression)
- expression
spatial, non spatial scalar
- Result
dimension of expression directional
Options¶
if expression is a number: --degrees or --radians
--degreesdirection is given in degrees (default)
--radiansdirection is given in radians
Operation¶
For each cell, calculates the inverse tangent of the cell value on expression and assigns it to Result.
Notes¶
A cell with missing value on expression is assigned a missing value on Result.
Group¶
This operation belongs to the group of Arithmetic operators
Examples¶
- • pcrcalcbindingResult = Result.map;Expr = Expr.map;initialreport Result = atan(Expr);• pythonExpr = readmap(“Expr.map”)Result = atan(Expr)
Result.map
Expr.map