{
"id": "fn-math-sinh",
"dataComponent": "math",
"heading": {
"title": "sinh",
"badges": [
"Math",
"JSMath"
]
},
"synopsis": "The hyperbolic sine of a single numeric argument.",
"codeBlocks": [
"extend(\"math\")\n\nsput( math:sinh(0) )\n# => 0\n\nsput( math:sinh(1) )\n# => ~1.175201193\n"
],
"notes": [
"One numeric argument => returns float for sinh(x).\n\nhyperbolic functions are similar to standard trigonometric functions but instead use a hyperbolic curve not a circle as a reference."
]
}