{
"id": "fn-math-cosh",
"dataComponent": "math",
"heading": {
"title": "cosh",
"badges": ["Math", "JSMath"]
},
"synopsis": "Computes the hyperbolic cosine of a single numeric argument.",
"codeBlocks": [
"extend(\"math\")\\n\\nsput( math:cosh(0) )\\n# => 1\\n\\nsput( math:cosh(1) )\\n# => ~1.54308063482\\n"
],
"notes": [
"Single numeric argument. Returns cosh(x) as a float."
]
}