Golang math.Expm1的用法和示例
Go语言通过math包提供了基本常量和数学函数的内置支持,可以使用Expm1()函数找出指定数字的e为底的指数减1,即 e **a -1。因此,需要使用import关键字将math包导入程序以访问Expm1()函数。
语法:
func Expm1(a float64) float64
- 如果在此函数中传递+ Inf,则此函数将返回+ Inf。
- 如果在此函数中传递-Inf,则此函数将返回-1。
- 在此函数中,非常大的值会溢出到-1或+Inf。
- 如果在此函数中传递NaN,则此函数将返回NaN。
示例1:
// Golang程序说明Exmp1函数
package main
import (
"fmt"
"math"
)
//主函数
func main() {
//使用Expm1()函数
res_1 := math.Expm1(4)
res_2 := math.Expm1(-1)
res_3 := math.Expm1(math.Inf(1))
res_4 := math.Expm1(math.NaN())
//显示结果
fmt.Printf("结果1:%.1f", res_1)
fmt.Printf("\n结果2:%.1f", res_2)
fmt.Printf("\n结果3:%.1f", res_3)
fmt.Printf("\n结果4:%.1f", res_4)
}
输出:
结果1:53.6
结果2:-0.6
结果3:+Inf
结果4:NaN
示例2:
// Golang程序说明Exmp1函数
package main
import (
"fmt"
"math"
)
//主函数
func main() {
//使用Expm1()函数
nvalue_1 := math.Expm1(7.3)
nvalue_2 := math.Expm1(-3)
res := nvalue_1 + nvalue_2
fmt.Printf("%.1f + %.1f = %.1f",
nvalue_1, nvalue_2, res)
}
输出:
1479.3 + -1.0 = 1478.3