mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
25 lines
466 B
Markdown
25 lines
466 B
Markdown
|
---
|
||
|
title: math.Tan
|
||
|
description: Returns the tangent of the given radian number.
|
||
|
categories: []
|
||
|
keywords: []
|
||
|
action:
|
||
|
aliases: []
|
||
|
related:
|
||
|
- functions/math/Pi
|
||
|
- functions/math/Sin
|
||
|
- functions/math/Cos
|
||
|
- functions/math/Asin
|
||
|
- functions/math/Acos
|
||
|
- functions/math/Atan
|
||
|
- functions/math/Atan2
|
||
|
returnType: float64
|
||
|
signatures: [math.Tan VALUE]
|
||
|
---
|
||
|
|
||
|
{{< new-in 0.130.0 >}}
|
||
|
|
||
|
```go-html-template
|
||
|
{{ math.Tan 1 }} → 1.557407724654902
|
||
|
```
|