Beispiel #1
0
func CdfExppowQ(x float64, a float64, b float64) float64 {
	return float64(C.gsl_cdf_exppow_Q(C.double(x), C.double(a), C.double(b)))
}
Beispiel #2
0
// ExppowQ returns the cumulative distribution function Q(x) for
// the upper tail of an exponential power distribution.
func ExppowQ(x, a, b float64) float64 {
	return float64(C.gsl_cdf_exppow_Q(C.double(x), C.double(a), C.double(b)))
}