-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy patharcsin.json
More file actions
46 lines (46 loc) · 1.22 KB
/
arcsin.json
File metadata and controls
46 lines (46 loc) · 1.22 KB
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
{
"id": "arcsin",
"summary": "Inverse sine",
"description": "Computes the arc sine of `x`. The arc sine is the inverse function of the sine so that *`arcsin(sin(x)) = x`*.\n\nWorks on radians only.\nNo-data values are passed through. `NaN` is returned for values < -1 and > 1.",
"categories": [
"math > trigonometric"
],
"parameters": [
{
"name": "x",
"description": "A number in the range *[-1, 1]*.",
"schema": {
"type": [
"number",
"null"
],
"minimum": -1,
"maximum": 1
}
}
],
"returns": {
"description": "The computed angle in radians in the range *[-π/2, π/2]*.",
"schema": {
"type": [
"number",
"null"
]
}
},
"examples": [
{
"arguments": {
"x": 0
},
"returns": 0
}
],
"links": [
{
"rel": "about",
"href": "http://mathworld.wolfram.com/InverseSine.html",
"title": "Inverse sine explained by Wolfram MathWorld"
}
]
}