forked from eodcgmbh/openeo-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exp.json
68 lines (68 loc) · 1.63 KB
/
exp.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
65
66
67
68
{
"id": "exp",
"summary": "Exponentiation to the base e",
"description": "Exponential function to the base *e* raised to the power of `p`.\n\nThe no-data value `null` is passed through and therefore gets propagated.",
"categories": [
"math > exponential & logarithmic"
],
"parameters": [
{
"name": "p",
"description": "The numerical exponent.",
"schema": {
"type": [
"number",
"null"
]
}
}
],
"returns": {
"description": "The computed value for *e* raised to the power of `p`.",
"schema": {
"type": [
"number",
"null"
]
}
},
"examples": [
{
"arguments": {
"p": 0
},
"returns": 1
},
{
"arguments": {
"p": null
},
"returns": null
}
],
"links": [
{
"rel": "about",
"href": "http://mathworld.wolfram.com/ExponentialFunction.html",
"title": "Exponential function explained by Wolfram MathWorld"
}
],
"process_graph": {
"e": {
"process_id": "e",
"arguments": {}
},
"power": {
"process_id": "power",
"arguments": {
"base": {
"from_node": "e"
},
"p": {
"from_parameter": "p"
}
},
"result": true
}
}
}