Returns the log of the gamma function at a given value.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public static double GammaLn(
	double x
)
Visual Basic (Declaration)
Public Shared Function GammaLn ( _
	x As Double _
) As Double
Visual C++
public:
static double GammaLn(
	double x
)

Parameters

x
Type: System..::.Double
A point on the x-axis.

Return Value

The log of the gamma function at x.

Remarks

The gamma function is an extension of the factorial function to complex and real number arguments.

See Also