C# Class NSoft.NFramework.Numerics.ParetoRandomizer

Pareto 분포를 가지는 난수발생기
Inheritance: RandomizerBase
Exibir arquivo Open project: debop/NFramework

Public Methods

Method Description
Next ( ) : double

난수 발생

ParetoRandomizer ( ) : System

생성자

ParetoRandomizer ( Func randomNumberFunc = null ) : System

생성자

ParetoRandomizer ( double c ) : System

생성자

ParetoRandomizer ( double c, Func randomNumberFunc = null ) : System

생성자

Method Details

Next() public method

난수 발생
public Next ( ) : double
return double

ParetoRandomizer() public method

생성자
public ParetoRandomizer ( ) : System
return System

ParetoRandomizer() public method

생성자
public ParetoRandomizer ( Func randomNumberFunc = null ) : System
randomNumberFunc Func 사용자 정의 난수 발생 함수
return System

ParetoRandomizer() public method

생성자
public ParetoRandomizer ( double c ) : System
c double Pareto Shape Parameter (default: 1.0) (양수여야 합니다.)
return System

ParetoRandomizer() public method

생성자
public ParetoRandomizer ( double c, Func randomNumberFunc = null ) : System
c double Pareto Shape Parameter (default: 1.0) (양수여야 합니다.)
randomNumberFunc Func 사용자 정의 난수 발생 함수
return System