HyperbolicSecantDistribution.InverseCdf Method

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7

Overload List

InverseCdf(Double) Returns the inverse of the DistributionFunction(Double).
InverseCdf(Double, Double, Double) Returns the inverse of the cumulative distribution function.

InverseCdf(Double, Double, Double)

Returns the inverse of the cumulative distribution function.
C#
public static double InverseCdf(
	double probability,
	double location,
	double scale
)

Parameters

probability  Double
A real number between 0 and 1.
location  Double
The location parameter.
scale  Double
The scale parameter.

Return Value

Double
The value x for which P(X >= x) = probability.

Exceptions

ArgumentOutOfRangeException

probability is less than 0 or greater than 1.

-or-

scale is less than or equal to zero.

See Also