Here, We will learn how to get the order-zero Bessel function of the second kind in go. We can get it by using Y0() function in math package in go golang.
Function prototype:
func Y0(x float64) float64
Return value:
Y0() function in math package returns
the order-zero Bessel function of the second kind.
Example with code:
package main
import (
"fmt"
"math"
)
func main() {
no := math.Y0(1.2)
fmt.Println(no)
no = math.Y0(-2.7)
fmt.Println(no)
no = math.Y0(0.0)
fmt.Println(no)
no = math.Y0(-2.9)
fmt.Println(no)
no = math.Y0(2)
fmt.Println(no)
}
Output:
0.22808350322719684
NaN
-Inf
NaN
0.5103756726497451
To learn more about golang, Please refer given below link:
https://techieindoor.com/go-lang-tutorial/
References:
https://golang.org/doc/
https://golang.org/pkg/