func CdfExppowP(x float64, a float64, b float64) float64 { return float64(C.gsl_cdf_exppow_P(C.double(x), C.double(a), C.double(b))) }
// ExppowP returns the cumulative distribution function P(x) for // the lower tail of a exponential power distribution. func ExppowP(x, a, b float64) float64 { return float64(C.gsl_cdf_exppow_P(C.double(x), C.double(a), C.double(b))) }