Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.expressionevaluator / org.gvsig.expressionevaluator.lib / org.gvsig.expressionevaluator.lib.impl / src / main / resources / org / gvsig / expressionevaluator / functions / en / ATAN.json @ 44089

History | View | Annotate | Download (598 Bytes)

1
{
2
    "name": "ATAN",
3
    "group": "Numeric",
4
    "template": "ATAN({{a}})",
5
    "args": [
6
        "a - an angle, in radians."
7
    ],
8
    "description": ["Returns the arc tangent of a value; the returned angle is in the range -pi/2 through pi/2. Special cases:",
9
            "- If the argument is NaN, then the result is NaN.",
10
            "- If the argument is zero, then the result is a zero with the same sign as the argument.",
11
            "The computed result must be within 1 ulp of the exact result. Results must be semi-monotonic.",
12
            "ATAN({{a}})"],
13
    "returnType": "Double"
14
}