📅  最后修改于: 2023-12-03 15:23:09.082000             🧑  作者: Mango
在 Golang 中,我们可以使用 math
包中的 Atanh()
函数来找到指定数的反双曲正切。该函数返回给定参数的反双曲正切值,以弧度为单位。
func Atanh(x float64) float64
其中,参数 x
为要计算反双曲正切值的浮点数。
使用方法如下:
package main
import (
"fmt"
"math"
)
func main() {
x := 0.5
atanh := math.Atanh(x)
fmt.Printf("The inverse hyperbolic tangent of %v is %v\n", x, atanh)
}
输出:
The inverse hyperbolic tangent of 0.5 is 0.5493061443340548
以上就是在 Golang 中找到指定数的反双曲正切的介绍。