LognormalDistributionLeftProbability Method

Returns the cumulative probability to the left of (below) the given point.

Definition

Namespace: Meta.Numerics.Statistics.Distributions
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public override double LeftProbability(
	double x
)

Parameters

x  Double
The reference point.

Return Value

Double
The integrated probability P(x) to obtain a result below the reference point.

Remarks

The left probability function is commonly called the cumulative distribution function (CDF).

If you want a right-tailed value, you should use RightProbability(Double) instead.

See Also