Метод | Описание | |
---|---|---|
AssertValidParameters ( double shape, double scale ) : void |
Weibull 분포의 인자 값을 검증합니다.
|
|
CumulativeDistribution ( double x ) : double |
확률 분포 계산을 위한 누적분포함수
|
|
Density ( double x ) : double |
분포의 확률 밀도
|
|
DensityLn ( double x ) : double |
분포의 로그 확률 밀도
|
|
Sample ( ) : double |
분포의 무작위 값을 제공합니다.
|
|
Sample ( |
Generates a sample from the Weibull distribution.
|
|
Samples ( ) : IEnumerable |
현 분포의 무작위 값을 열거합니다.
|
|
Samples ( |
Generates a sequence of samples from the Weibull distribution.
|
|
ToString ( ) : string | ||
Weibull ( double shape, double scale, Func |
Initializes a new instance of the Weibull class.
|
Метод | Описание | |
---|---|---|
SampleWeibull ( |
Weibull 분포의 샘플 데이타를 제공합니다.
|
|
SampleWeibulls ( |
Weibull 분포의 샘플 데이타 시퀀스를 제공합니다.
|
|
SetParameters ( double shape, double scale ) : void |
Weibull 분포의 factor를 설정합니다.
|
public static AssertValidParameters ( double shape, double scale ) : void | ||
shape | double | |
scale | double | |
Результат | void |
public CumulativeDistribution ( double x ) : double | ||
x | double | The location at which to compute the cumulative distribution function. |
Результат | double |
public static Sample ( |
||
rnd | The random number generator to use. | |
shape | double | The shape of the Weibull distribution from which to generate samples. |
scale | double | The scale of the Weibull distribution from which to generate samples. |
Результат | double |
public static Samples ( |
||
rnd | The random number generator to use. | |
shape | double | The shape of the Weibull distribution from which to generate samples. |
scale | double | The scale of the Weibull distribution from which to generate samples. |
Результат | IEnumerable |
public Weibull ( double shape, double scale, Func |
||
shape | double | The shape of the Weibull distribution. |
scale | double | The scale of the Weibull distribution. |
randomFactory | Func |
난수발생기 Factory |
Результат | System |