HyperbolicSecantDistribution Constructor

Definition

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

Overload List

HyperbolicSecantDistribution() Constructs a new HyperbolicSecantDistribution with location parameter equal to zero and scale parameter equal to 1.
HyperbolicSecantDistribution(Double) Constructs a new HyperbolicSecantDistribution with specified location parameter and scale parameter equal to 1.
HyperbolicSecantDistribution(Double, Double) Constructs a new HyperbolicSecantDistribution with specified location and scale parameters.

HyperbolicSecantDistribution

Constructs a new HyperbolicSecantDistribution with location parameter equal to zero and scale parameter equal to 1.
C#
public HyperbolicSecantDistribution()

HyperbolicSecantDistribution(Double)

Constructs a new HyperbolicSecantDistribution with specified location parameter and scale parameter equal to 1.
C#
public HyperbolicSecantDistribution(
	double location
)

Parameters

location  Double
The location parameter of the distribution.

HyperbolicSecantDistribution(Double, Double)

Constructs a new HyperbolicSecantDistribution with specified location and scale parameters.
C#
public HyperbolicSecantDistribution(
	double location,
	double scale
)

Parameters

location  Double
The location parameter of the distribution.
scale  Double
The scale parameter of the distribution.

Exceptions

ArgumentOutOfRangeException

scale is less than or equal to zero.

See Also