📜  Golang 中的 math.Gamma()函数示例

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

Go 语言为基本常量和数学函数提供内置支持,以在 math 包的帮助下对数字执行运算。你可以找到伽玛函数由数学包提供的伽马()函数的帮助下,给定值。因此,您需要借助 import 关键字在程序中添加一个数学包来访问 Gamma()函数。

句法:

func Gamma(a float64) float64
  • 如果 Gamma(+Inf),则此方法将返回 +Inf。
  • 如果 Gamma(+0),则此方法将返回 +Inf。
  • 如果是 Gamma(-Inf),则此方法将返回 -Inf。
  • 如果 Gamma(a),则此方法将返回 NaN 整数 a<0。
  • 如果 Gamma(-Inf),则此方法将返回 NaN。
  • 如果 Gamma(NaN),则此方法将返回 NaN。

示例 1:

// Golang program to illustrate
// the math.Gamma() function
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Finding gamma function 
    // of the given values.
    // Using Gamma() function
    res_1 := math.Gamma(math.Inf(-1))
    res_2 := math.Gamma(math.Inf(1))
    res_3 := math.Gamma(0)
    res_4 := math.Gamma(1)
    res_5 := math.Gamma(math.NaN())
  
    // Displaying the result
    fmt.Printf("\nResult 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)
    fmt.Printf("\nResult 5: %.1f", res_5)
}

输出:

Result 1: NaN
Result 2: +Inf
Result 3: +Inf
Result 4: 1.0
Result 5: NaN

示例 2:

// Golang program to illustrate
// the math.Gamma() function
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Finding gamma function
    // of the given values.
    // Using Gamma() function
    nvalue_1 := math.Gamma(2)
    nvalue_2 := math.Gamma(4)
  
    // Sum of the given numbers
    res := nvalue_1 + nvalue_2
    fmt.Printf("%.2f + %.2f = %.2f",
           nvalue_1, nvalue_2, res)
  
}

输出:

1.00 + 6.00 = 7.00