NonCentralChiSquareDistribution Constructor

Constructs a new non-central Chi Squared distribution.

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public NonCentralChiSquareDistribution(
	double degreesOfFreedom,
	double nonCentralityParameter
)

Parameters

degreesOfFreedom  Double
The number of degrees of freedom. Must be strictly greater than zero.
nonCentralityParameter  Double
The non-centrality parameter. Must be greater than or equal to zero.

Exceptions

ArgumentOutOfRangeException

degreesOfFreedom is less than or equal to zero.

-or-

nonCentralityParameter is less than zero.

See Also