HyperbolicSecantDistribution.Cdf Method

Definition

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

Overload List

Cdf(Double) Evaluates the cumulative distribution function (CDF) of this distribution for the specified value.
Cdf(Double, Double, Double) Evaluates the cumulative distribution function (CDF) for the specified value.

Cdf(Double, Double, Double)

Evaluates the cumulative distribution function (CDF) for the specified value.
C#
public static double Cdf(
	double x,
	double location,
	double scale
)

Parameters

x  Double
A real number.
location  Double
The location parameter of the distribution.
scale  Double
The scale parameter of the distribution.

Return Value

Double
The probability that a random variable from this distribution is less than or equal to x.

Exceptions

ArgumentOutOfRangeException

scale is less than or equal to zero.

See Also