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

Fit() 공개 메소드

Fits the underlying distribution to a given set of observations.
public Fit ( double observations, double weights ) : IDistribution
observations double The array of observations to fit the model against.
weights double The weight vector containing the weight for each of the samples.
리턴 IDistribution
        public override IDistribution Fit(double[] observations, double[] weights)
        {
            throw new NotSupportedException();
        }