You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"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]*.",