C# Class Accord.Statistics.Distributions.Fitting.MixtureOptions

Inheritance: IFittingOptions
Afficher le fichier Open project: accord-net/framework Class Usage Examples

Méthodes publiques

Méthode Description
Clone ( ) : object

Creates a new object that is a copy of the current instance.

MixtureOptions ( ) : System

Initializes a new instance of the MixtureOptions class.

MixtureOptions ( double threshold ) : System

Initializes a new instance of the MixtureOptions class.

MixtureOptions ( double threshold, IFittingOptions innerOptions ) : System

Initializes a new instance of the MixtureOptions class.

Method Details

Clone() public méthode

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
Résultat object

MixtureOptions() public méthode

Initializes a new instance of the MixtureOptions class.
public MixtureOptions ( ) : System
Résultat System

MixtureOptions() public méthode

Initializes a new instance of the MixtureOptions class.
public MixtureOptions ( double threshold ) : System
threshold double The convergence criterion for the /// Expectation-Maximization algorithm. Default is 1e-3.
Résultat System

MixtureOptions() public méthode

Initializes a new instance of the MixtureOptions class.
public MixtureOptions ( double threshold, IFittingOptions innerOptions ) : System
threshold double The convergence criterion for the /// Expectation-Maximization algorithm. Default is 1e-3.
innerOptions IFittingOptions The fitting options for the inner /// component distributions of the mixture density.
Résultat System