Constructs an FDistribution instance with the specified degrees of
freedom.
Namespace:
CenterSpace.NMath.Stats
Assembly:
NMathStats (in NMathStats.dll) Version: 3.4.0.0
Syntax
| C# |
|---|
public FDistribution(
int df1,
int df2
) |
| Visual Basic (Declaration) |
|---|
Public Sub New ( _
df1 As Integer, _
df2 As Integer _
) |
| Visual C++ |
|---|
public:
FDistribution(
int df1,
int df2
) |
Parameters
- df1
- Type: System..::.Int32
First degrees of freedom parameter. If F is thought
of as the ratio of two chi-square distributions, df1 is the
number of degrees of freedom of the chi-square in the numerator.
- df2
- Type: System..::.Int32
Second degrees of freedom parameter. If F is thought
of as the ratio of two chi-square distributions, df2 is the
number of degrees of freedom of the chi-square in the denominator.
Exceptions
See Also