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 / COSH.json @ 44053

History | View | Annotate | Download (662 Bytes)

1
{
2
    "name": "COSH",
3
    "group": "Numeric",
4
    "template": "COSH({{a}})",
5
    "args": [
6
        "a - The number whose hyperbolic cosine is to be returned."
7
    ],
8
    "description": [
9
      "Returns the hyperbolic cosine of a double value. The hyperbolic cosine of x is defined to be (ex + e-x)/2 where e is Euler's number.",
10
      "Special cases:",
11
      "- If the argument is NaN, then the result is NaN.",
12
      "- If the argument is infinite, then the result is positive infinity.",
13
      "- If the argument is zero, then the result is 1.0.",
14
      "The computed result must be within 2.5 ulps of the exact result."
15
      ] ,
16
    "returnType": "Double"
17
}