NonCentralStudentTDistribution Constructor

Constructs a new StudentTDistribution object with the specified degrees of freedom.

Definition

Namespace: Extreme.Statistics.Distributions
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public NonCentralStudentTDistribution(
	double degreesOfFreedom,
	double nonCentralityParameter
)

Parameters

degreesOfFreedom  Double
The degrees of freedom of the distribution.
nonCentralityParameter  Double
The non-centrality parameter.

Remarks

The degrees of freedom must be greater than zero.

Exceptions

ArgumentOutOfRangeExceptiondegreesOfFreedom is less than or equal to zero.

See Also