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

}