diff options
Diffstat (limited to 'content/en/functions/math/Asin.md')
-rw-r--r-- | content/en/functions/math/Asin.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/content/en/functions/math/Asin.md b/content/en/functions/math/Asin.md new file mode 100644 index 000000000..d90761ae7 --- /dev/null +++ b/content/en/functions/math/Asin.md @@ -0,0 +1,24 @@ +--- +title: math.Asin +description: Returns the arcsine, in radians, of the given number. +categories: [] +keywords: [] +action: + aliases: [] + related: + - functions/math/Acos + - functions/math/Atan + - functions/math/Atan2 + - functions/math/Pi + - functions/math/Sin + - functions/math/Cos + - functions/math/Tan + returnType: float64 + signatures: [math.Asin VALUE] +--- + +{{< new-in 0.130.0 >}} + +```go-html-template +{{ math.Asin 1 }} → 1.5707963267948966 +``` |