Method | Description | |
---|---|---|
CumulativeDistribution ( double x ) : double |
확률 분포 계산을 위한 누적분포함수
|
|
DiscreteUniform ( int lower, int upper, Func |
||
Probability ( int k ) : double |
분포의 확률
|
|
ProbabilityLn ( int k ) : double |
분포의 Log 확률
|
|
Sample ( ) : int |
분포의 데이타를 반환합니다.
|
|
Sample ( |
||
Samples ( ) : IEnumerable |
분포의 무작위 데이타를 열거합니다.
|
|
Samples ( |
Method | Description | |
---|---|---|
AssertParameters ( int lower, int upper ) : void | ||
SampleUniform ( |
상하한을 포함한 균일한 분포를 형성하는 데이타를 생성합니다.
|
|
SetParameters ( int lower, int upper ) : void |
public CumulativeDistribution ( double x ) : double | ||
x | double | The location at which to compute the cumulative distribution function. |
return | double |
public DiscreteUniform ( int lower, int upper, Func |
||
lower | int | |
upper | int | |
randomFactory | Func |
|
return | System |
public static Sample ( |
||
rnd | ||
lower | int | |
upper | int | |
return | int |
public static Samples ( |
||
rnd | ||
lower | int | |
upper | int | |
return | IEnumerable |