📜  在 Golang 中找到给定数的 Base-e 指数

📅  最后修改于: 2021-10-25 02:58:31             🧑  作者: Mango

Go 语言为基本常量和数学函数提供内置支持,以在 math 包的帮助下对数字执行运算。您可以借助math 包提供的Exp()函数找到以 e 为底的指数,即指定数字的e**a 。因此,您需要在 import 关键字的帮助下在程序中添加一个数学包来访问 Exp()函数。

句法:

func Exp(a float64) float64
  • 如果在此函数传递 +Inf,则此函数将返回 +Inf。
  • 在这个函数,非常大的值溢出到 0 或 +Inf,非常小的值下溢到 1。
  • 如果在此函数传递 NaN,则此函数将返回 NaN。

示例 1:

// Golang program to illustrate how to
// find exponential of the given number
  
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Finding base-e exponential
    // of the given number
    // Using Exp() function
    res_1 := math.Exp(3)
    res_2 := math.Exp(1)
    res_3 := math.Exp(math.Inf(1))
    res_4 := math.Exp(math.NaN())
  
    // Displaying the result
    fmt.Printf("Result 1: %.1f", res_1)
    fmt.Printf("\nResult 2: %.1f", res_2)
    fmt.Printf("\nResult 3: %.1f", res_3)
    fmt.Printf("\nResult 4: %.1f", res_4)
  
}

输出:

Result 1: 20.1
Result 2: 2.7
Result 3: +Inf
Result 4: NaN

示例 2:

// Golang program to illustrate how to
// find exponential of the given number
  
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Finding base-e exponential
    // Using Exp() function
    nvalue_1 := math.Exp(2)
    nvalue_2 := math.Exp(3)
    res := nvalue_1 + nvalue_2
    fmt.Printf("%.1f + %.1f = %.1f",
            nvalue_1, nvalue_2, res)
  
}

输出:

7.4 + 20.1 = 27.5