Compute the complex log Gamma function.

Namespace:  Meta.Numerics.Functions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static Complex LogGamma(
	Complex z
)
Public Shared Function LogGamma ( _
	z As Complex _
) As Complex
public:
static Complex LogGamma(
	Complex z
)

Parameters

z
Complex
The complex argument, which must have non-negative z.Re.

Return Value

The complex value ln(Γ(z)).

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeExceptionThe real part of z is negative.

See Also