Click or drag to resize

SpecialFunctionsBetaRegularized Method

Calculates value of regularized incomplete beta function with nonnegative real arguments. http://en.wikipedia.org/wiki/Beta_function#Incomplete_beta_function

Namespace:  FinMath
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public static double BetaRegularized(
	double a,
	double b,
	double x
)

Parameters

a
Type: SystemDouble
The first Beta argument, must be nonnegative.
b
Type: SystemDouble
The second Beta argument, must be nonnegative.
x
Type: SystemDouble
Upper limit of integral, must be in [0, 1].

Return Value

Type: Double
Value of regularized incomplete beta function.
See Also