예제 #1
0
파일: gamma.go 프로젝트: postfix/gsl-1
func Gamma(x float64) float64 {
	return float64(C.gsl_sf_gamma(C.double(x)))
}
예제 #2
0
파일: gamma.go 프로젝트: mingzhi/gsl-cgo
/* Gamma(x), x not a negative integer
 * Uses real Lanczos method.
 */
func Gamma(x float64) (r float64) {
	r = float64(C.gsl_sf_gamma(C.double(x)))
	return
}