C# 클래스 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.
파일 보기 프로젝트 열기: colgreen/sharpneat 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
_incr double
_max double
_min double
_sampleCount int

공개 메소드들

메소드 설명
ParameterSamplingInfo ( double min, double max, int sampleCount ) : System.Diagnostics

Construct with the provided parameter info.

메소드 상세

ParameterSamplingInfo() 공개 메소드

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

프로퍼티 상세

_incr 공개적으로 프로퍼티

Intra sample increment.
public double _incr
리턴 double

_max 공개적으로 프로퍼티

Sample range maximum.
public double _max
리턴 double

_min 공개적으로 프로퍼티

Sample range minimum.
public double _min
리턴 double

_sampleCount 공개적으로 프로퍼티

Sample count.
public int _sampleCount
리턴 int