Click or drag to resize

LognormalDistributionLeftProbability Method

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

Namespace:  Meta.Numerics.Statistics.Distributions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public override double LeftProbability(
	double x
)

Parameters

x
Type: SystemDouble
The reference point.

Return Value

Type: 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