示例#1
0
文件: gamma.go 项目: postfix/gsl-1
func Poch(a float64, x float64) float64 {
	return float64(C.gsl_sf_poch(C.double(a), C.double(x)))
}
示例#2
0
文件: gamma.go 项目: mingzhi/gsl-cgo
/* Pochhammer (Apell) symbol
 *   (a)_x := Gamma[a + x]/Gamma[x]
 *
 * a != neg integer, a+x != neg integer
 *
 */
func Poch(a, x float64) (r float64) {
	r = float64(C.gsl_sf_poch(C.double(a), C.double(x)))
	return
}