Public Function Pochhammer( _
ByVal vA As Variant _
, ByVal vX As Variant _
) As Variant Pochhammer(1, 1) = 1
Pochhammer(1, 2) = 2
Pochhammer(2, 1) = 2
Pochhammer(2, 2) = 6
Pochhammer(3, 2) = 12
Pochhammer(4, 1) = 4
Pochhammer(4, 2) = 20
Pochhammer(5, 2) = 30See also: Pochhammer1 Function
DPOCH FunctionvA: Function returns Null if vA is Null or cannot be fixed up to a Double precision floating point number. Evaluate a double precision generalization of Pochhammer's symbol
(A)-sub-X = GAMMA(A+X)/GAMMA(A)for double precision A and X. For X a non-negative integer, Pochhammer(A,X) is just Pochhammer's symbol. This is a preliminary version that does not handle wrong arguments properly and may not properly handle the case when the result is computed to less than half of double precision.
Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.