예제 #1
0
파일: randist.go 프로젝트: postfix/gsl-1
func CdfLaplaceQinv(q float64, a float64) float64 {
	return float64(C.gsl_cdf_laplace_Qinv(C.double(q), C.double(a)))
}
예제 #2
0
파일: cdf.go 프로젝트: haskelladdict/gsl
// LaplaceQinv returns the cumulative distribution function Qinv(x) for
// the upper tail of a laplace distribution.
func LaplaceQinv(Q, a float64) float64 {
	return float64(C.gsl_cdf_laplace_Qinv(C.double(Q), C.double(a)))
}