forked from Open-EO/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arcosh.json
64 lines (64 loc) · 1.72 KB
/
arcosh.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"id": "arcosh",
"summary": "Inverse hyperbolic cosine",
"description": "Computes the inverse hyperbolic cosine of `x`. It is the inverse function of the hyperbolic cosine so that *arcosh(cosh(x)) = x*.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated.",
"categories": [
"math > trigonometric"
],
"parameters": {
"x": {
"description": "A number.",
"schema": {
"type": [
"number",
"null"
]
},
"required": true
}
},
"returns": {
"description": "The computed angle in radians.",
"schema": {
"type": [
"number",
"null"
]
}
},
"examples": [
{
"arguments": {
"x": 1
},
"returns": 0
},
{
"process_graph": {
"cosh1": {
"process_id": "cosh",
"arguments": {
"x": 0.5
}
},
"arccosh1": {
"process_id": "arcosh",
"arguments": {
"x": {
"from_node": "cosh1"
}
},
"result": true
}
},
"returns": 0.5
}
],
"links": [
{
"rel": "about",
"href": "http://mathworld.wolfram.com/InverseHyperbolicCosine.html",
"title": "Inverse hyperbolic cosine explained by Wolfram MathWorld"
}
]
}