예제 #1
0
파일: randist.go 프로젝트: postfix/gsl-1
func CdfLognormalPinv(p float64, zeta float64, sigma float64) float64 {
	return float64(C.gsl_cdf_lognormal_Pinv(C.double(p), C.double(zeta), C.double(sigma)))
}
예제 #2
0
파일: cdf.go 프로젝트: haskelladdict/gsl
// LognormalPinv returns the inverse cumulative distribution function Pinv(x) for
// the lower tail of a lognormal distribution.
func LognormalPinv(P, zeta, sigma float64) float64 {
	return float64(C.gsl_cdf_lognormal_Pinv(C.double(P), C.double(zeta), C.double(sigma)))
}