forked from Open-EO/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cosh.json
44 lines (44 loc) · 1.08 KB
/
cosh.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"id": "cosh",
"summary": "Hyperbolic cosine",
"description": "Computes the hyperbolic cosine of `x`.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.",
"categories": [
"math > trigonometric"
],
"parameters": {
"x": {
"description": "An angle in radians.",
"schema": {
"type": [
"number",
"null"
]
},
"required": true
}
},
"returns": {
"description": "The computed hyperbolic cosine of `x`.",
"schema": {
"type": [
"number",
"null"
]
}
},
"examples": [
{
"arguments": {
"x": 0
},
"returns": 1
}
],
"links": [
{
"rel": "about",
"href": "http://mathworld.wolfram.com/HyperbolicCosine.html",
"title": "Hyperbolic cosine explained by Wolfram MathWorld"
}
]
}