Returns the probability that a sample taken from the
distribution lies inside the specified interval.
Namespace:
Extreme.Statistics.Distributions
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public double Probability(
double minValue,
double maxValue
)
Public Function Probability (
minValue As Double,
maxValue As Double
) As Double
public:
double Probability(
double minValue,
double maxValue
)
member Probability :
minValue : float *
maxValue : float -> float
Parameters
- minValue
- Type: SystemDouble
The lower bound of the interval. - maxValue
- Type: SystemDouble
The upper bound of the interval.
Return Value
Type:
DoubleThe probability that a sample taken from the
distribution lies between
minValue and
maxValue.
If maxValue is less than minValue,
zero is returned.
Reference