|
FDistribution Constructor (Int32, Int32)
|
Constructs a F-distribution with
the given degrees of freedom.
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public FDistribution(
[PositiveIntegerAttribute(1, 2147483647)] int degrees1,
[PositiveIntegerAttribute(1, 2147483647)] int degrees2
)
Public Sub New (
<PositiveIntegerAttribute(1, 2147483647)> degrees1 As Integer,
<PositiveIntegerAttribute(1, 2147483647)> degrees2 As Integer
)
Request Example
View SourceParameters
- degrees1
- Type: SystemInt32
The first degree of freedom. Default is 1. - degrees2
- Type: SystemInt32
The second degree of freedom. Default is 1.
See Also