Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Calculates the angle whose sine is the specified number, or the arc sine. This is the inverse operation of sin()
.
asin(
x)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
x | real |
✔️ | A real number in range [-1, 1] used to calculate the arc sine. |
Returns the value of the arc sine of x
. Returns null
if x
< -1 or x
> 1.
asin(0.5)
Output
result |
---|
1.2532358975033751 |