Click or drag to resize

NoncentralTDistributionCDF Method

Returns the cumulative density function evaluated at the given value.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public override double CDF(
	double z
)

Parameters

z  Double
The value at which to evaluate the cumulative density function.

Return Value

Double
The cumulative density function evaluated at z. An input value of Double.NegativeInfinity returns a 0.0, and an input of Double.PositiveInfinity returns a 1.0. For z less than float.MinValue, 0.0 is returned, and greater than float.MaxValue 1.0 is returned.
Remarks
The value of the cumulative density function at a point z is probability that the value of a random variable having this normal density is less than or equal to z.
See Also