Click or drag to resize

NMathFunctionsIncompleteBeta Method

Note: This API is now obsolete.

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[ObsoleteAttribute("Instead use SpecialFunctions.IncompleteBeta()")]
public static double IncompleteBeta(
	double a,
	double b,
	double x
)

Parameters

a  Double
a parameter.
b  Double
b parameter.
x  Double
x parameter.

Return Value

Double
The incomplete beta.
Remarks
The incomplete beta function is a generalization of the beta function.
See Also