当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO Atanh用法及代码示例


GO语言"math"包中"Atanh"函数的用法及代码示例。

用法:

func Atanh(x float64) float64

Atanh 返回 x 的反双曲正切。

特殊情况是:

Atanh(1) = +Inf
Atanh(±0) = ±0
Atanh(-1) = -Inf
Atanh(x) = NaN if x < -1 or x > 1
Atanh(NaN) = NaN

例子:

package main

import (
	"fmt"
	"math"
)

func main() {
	fmt.Printf("%.2f", math.Atanh(0))
}

输出:

0.00

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Atanh。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。