コード例 #1
0
ファイル: randist.go プロジェクト: postfix/gsl-1
func CdfCauchyPinv(p float64, a float64) float64 {
	return float64(C.gsl_cdf_cauchy_Pinv(C.double(p), C.double(a)))
}
コード例 #2
0
ファイル: cdf.go プロジェクト: haskelladdict/gsl
// CauchyPinv returns the inverse cumulative distribution function Pinv(x) for
// the lower tail of a cauchy distribution.
func CauchyPinv(P, a float64) float64 {
	return float64(C.gsl_cdf_cauchy_Pinv(C.double(P), C.double(a)))
}