C# Class SharpNeat.Domains.FunctionRegression.ParameterSamplingInfo

Parameter sampling info. Describes the value range to sample, the number of samples within that range and the increment between samples.
Afficher le fichier Open project: colgreen/sharpneat Class Usage Examples

Méthodes publiques

Свойство Type Description
_incr double
_max double
_min double
_sampleCount int

Méthodes publiques

Méthode Description
ParameterSamplingInfo ( double min, double max, int sampleCount ) : System.Diagnostics

Construct with the provided parameter info.

Method Details

ParameterSamplingInfo() public méthode

Construct with the provided parameter info.
public ParameterSamplingInfo ( double min, double max, int sampleCount ) : System.Diagnostics
min double
max double
sampleCount int
Résultat System.Diagnostics

Property Details

_incr public_oe property

Intra sample increment.
public double _incr
Résultat double

_max public_oe property

Sample range maximum.
public double _max
Résultat double

_min public_oe property

Sample range minimum.
public double _min
Résultat double

_sampleCount public_oe property

Sample count.
public int _sampleCount
Résultat int