Accord.Statistics.Distributions.Multivariate.WishartDistribution.Fit C# (CSharp) Method

Fit() public method

Fits the underlying distribution to a given set of observations.
public Fit ( double observations, double weights, Fitting options ) : void
observations double The array of observations to fit the model against. The array /// elements can be either of type double (for univariate data) or /// type double[] (for multivariate data).
weights double The weight vector containing the weight for each of the samples.
options Fitting Optional arguments which may be used during fitting, such /// as regularization constants and additional parameters.
return void
        public override void Fit(double[][] observations, double[] weights, Fitting.IFittingOptions options)
        {
            throw new NotSupportedException();
        }