Golang math.Y0()函数及示例
Go语言通过math包提供内置支持基本常量和数学函数,以便通过数字执行操作。您可以使用math包提供的 Y0()函数 查找第二种类型的零阶贝塞尔函数 。因此,您需要通过import关键字将math包添加到程序中以访问Y0()函数。
语法:
func Y0(a float64) float64
- 如果您像Y0(+Inf)一样在此函数中传递+Inf,则此函数将返回0。
- 如果您在此函数中传递0,如Y0(0),则此函数将返回-Inf。
- 如果a值<0,则此函数将返回NaN。
- 如果您像Y0(NaN)一样在此函数中传递NaN,则此函数将返回NaN。
示例1:
// Golang程序演示
//使用math.Y0()函数
package main
import (
"fmt"
"math"
)
// 主函数
func main() {
// 查找零阶Bessel
// 第二种函数
// 使用Y0()函数
res_1 := math.Y0(-3)
res_2 := math.Y0(6)
res_3 := math.Y0(math.Inf(1))
res_4 := math.Y0(math.NaN())
res_5 := math.Y0(4.6)
res_6 := math.Y0(0)
//显示结果
fmt.Println("Result 1: ", res_1)
fmt.Println("Result 2: ", res_2)
fmt.Println("Result 3: ", res_3)
fmt.Println("Result 4: ", res_4)
fmt.Println("Result 5: ", res_5)
fmt.Println("Result 6: ", res_6)
}
输出:
结果1:NaN
结果2:-0.28819468398157916
结果3:0
结果4:NaN
结果5:-0.22345995255364678
结果6:-Inf
示例2:
// Golang程序演示
//使用math.Y0()函数
package main
import (
"fmt"
"math"
)
// 主函数
func main() {
// 查找零阶Bessel
// 第二种函数
// 使用Y0()函数
nvalue_1 := math.Y0(5.89)
nvalue_2 := math.Y0(5)
// 所给数字的总和
res := nvalue_1 + nvalue_2
fmt.Printf("%.3f + %.3f = %.3f",
nvalue_1, nvalue_2, res)
}
输出:
-0.306 + -0.309 = -0.614