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

Inheritance: IFittingOptions
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method 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 method

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

MixtureOptions() public method

Initializes a new instance of the MixtureOptions class.
public MixtureOptions ( ) : System
return System

MixtureOptions() public method

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.
return System

MixtureOptions() public method

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.
return System