Ejemplo n.º 1
0
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)))
}
Ejemplo n.º 2
0
// 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)))
}