示例#1
0
文件: randist.go 项目: postfix/gsl-1
func CdfExponentialPinv(p float64, mu float64) float64 {
	return float64(C.gsl_cdf_exponential_Pinv(C.double(p), C.double(mu)))
}
示例#2
0
文件: cdf.go 项目: haskelladdict/gsl
// ExponentialPinv returns the inverse cumulative distribution function Pinv(x) for
// the lower tail of an exponential distribution.
func ExponentialPinv(P, mu float64) float64 {
	return float64(C.gsl_cdf_exponential_Pinv(C.double(P), C.double(mu)))
}