Click or drag to resize

NMathFunctionsBeta Method

Note: This API is now obsolete.

Returns the value of the beta function at a given value.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[ObsoleteAttribute("Instead use SpecialFunctions.Beta()")]
public static double Beta(
	double z,
	double w
)

Parameters

z  Double
z parameter.
w  Double
w parameter.

Return Value

Double
The beta integral.
Remarks
The beta function is related to the gamma function as follows:
C#
B(z,w) = ( Gamma(z) * Gamma(w) ) / Gamma(z + w)
See Also