Evaluates the beta probability density function.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public static double Beta(
	double x,
	double pin,
	double qin
)
Visual Basic (Declaration)
Public Shared Function Beta ( _
	x As Double, _
	pin As Double, _
	qin As Double _
) As Double
Visual C++
public:
static double Beta(
	double x, 
	double pin, 
	double qin
)

Parameters

x
Type: System..::.Double
A double, the argument at which the function is to be evaluated.
pin
Type: System..::.Double
A double, the first beta distribution parameter.
qin
Type: System..::.Double
A double, the second beta distribution parameter.

Return Value

A double, the value of the probability density function at x.

See Also