func Gamma(x float64) float64 { return float64(C.gsl_sf_gamma(C.double(x))) }
/* 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 }