Hyperbolic Secant Distribution Constructor
Definition
Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
Overload List
Hyperbolic | Constructs a new HyperbolicSecantDistribution with location parameter equal to zero and scale parameter equal to 1. |
Hyperbolic | Constructs a new HyperbolicSecantDistribution with specified location parameter and scale parameter equal to 1. |
Hyperbolic | 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.
public HyperbolicSecantDistribution()
HyperbolicSecantDistribution(Double)
Constructs a new HyperbolicSecantDistribution with specified
location parameter and scale parameter equal to 1.
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.
public HyperbolicSecantDistribution(
double location,
double scale
)
Parameters
Exceptions
Argument | scale is less than or equal to zero. |