コード例 #1
0
ファイル: randist.go プロジェクト: postfix/gsl-1
func CdfExppowP(x float64, a float64, b float64) float64 {
	return float64(C.gsl_cdf_exppow_P(C.double(x), C.double(a), C.double(b)))
}
コード例 #2
0
ファイル: cdf.go プロジェクト: haskelladdict/gsl
// ExppowP returns the cumulative distribution function P(x) for
// the lower tail of a exponential power distribution.
func ExppowP(x, a, b float64) float64 {
	return float64(C.gsl_cdf_exppow_P(C.double(x), C.double(a), C.double(b)))
}