コード例 #1
0
ファイル: cylindrical.go プロジェクト: postfix/gsl-1
func I0(x float64) float64 {
	return float64(C.gsl_sf_bessel_I0(C.double(x)))
}
コード例 #2
0
ファイル: bessel.go プロジェクト: tflovorn/scExplorer
// Zeroth-order modified Bessel function of the first kind (I0)
func ModifiedBesselFirstKindZeroth(x float64) float64 {
	return float64(C.gsl_sf_bessel_I0(C.double(x)))
}