Revision 43983 trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.expressionevaluator/org.gvsig.expressionevaluator.lib/org.gvsig.expressionevaluator.lib.impl/src/main/java/org/gvsig/expressionevaluator/impl/function/numeric/ATanFunction.java

View differences:

ATanFunction.java
7 7
public class ATanFunction extends AbstractFunction {
8 8

  
9 9
    public ATanFunction() {
10
        super("Numeric", "ATAN", Range.is(1));
10
        super("Numeric", "ATAN", Range.is(1),
11
            "Returns the arc tangent of a value; the returned angle is in the range -pi/2 through pi/2. Special cases:\n" +
12
            "- If the argument is NaN, then the result is NaN.\n" +
13
            "- If the argument is zero, then the result is a zero with the same sign as the argument.\n" +
14
            "The computed result must be within 1 ulp of the exact result. Results must be semi-monotonic.\n",
15
            "ATAN({{a}})",
16
            new String[]{
17
                "a - the value whose arc tangent is to be returned."
18
            },
19
            "Double"
20
        );
11 21
    }
12 22

  
13 23
    @Override

Also available in: Unified diff