-
Notifications
You must be signed in to change notification settings - Fork 17
/
arctan2.json
62 lines (62 loc) · 1.68 KB
/
arctan2.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
{
"id": "arctan2",
"summary": "Inverse tangent of two numbers",
"description": "Computes the arc tangent of two numbers `x` and `y`. It is similar to calculating the arc tangent of *`y / x`*, except that the signs of both arguments are used to determine the quadrant of the result.\n\nWorks on radians only.\nThe no-data value `null` is passed through and therefore gets propagated if any of the arguments is `null`.",
"categories": [
"math > trigonometric"
],
"parameters": [
{
"name": "y",
"description": "A number to be used as the dividend.",
"schema": {
"type": [
"number",
"null"
]
}
},
{
"name": "x",
"description": "A number to be used as the divisor.",
"schema": {
"type": [
"number",
"null"
]
}
}
],
"returns": {
"description": "The computed angle in radians.",
"schema": {
"type": [
"number",
"null"
]
}
},
"examples": [
{
"arguments": {
"y": 0,
"x": 0
},
"returns": 0
},
{
"arguments": {
"y": null,
"x": 1.5
},
"returns": null
}
],
"links": [
{
"rel": "about",
"href": "https://en.wikipedia.org/wiki/Atan2",
"title": "Two-argument inverse tangent explained by Wikipedia"
}
]
}