Accord.Statistics.Distributions.Univariate.FDistribution.FDistribution C# (CSharp) 메소드

FDistribution() 공개 메소드

Constructs a F-distribution with the given degrees of freedom.
public FDistribution ( int degrees1, int degrees2 ) : System
degrees1 int The first degree of freedom.
degrees2 int The second degree of freedom.
리턴 System
        public FDistribution(int degrees1, int degrees2)
        {
            d1 = degrees1;
            d2 = degrees2;

            b = Special.Beta(degrees1*0.5, degrees2*0.5);
        }