C# Class NSoft.NFramework.Numerics.TRandomizer

N 자유도를 가지는 T 분포를 가지는 Random Generator
Inheritance: RandomizerBase
Datei anzeigen Open project: debop/NFramework

Public Methods

Method Description
Next ( ) : double

난수 발생

TRandomizer ( ) : System

생성자

TRandomizer ( Func randomNumberFunc = null ) : System

생성자

TRandomizer ( double n ) : System

생성자

TRandomizer ( int n, Func randomNumberFunc = null ) : System

생성자

Method Details

Next() public method

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

TRandomizer() public method

생성자
public TRandomizer ( ) : System
return System

TRandomizer() public method

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

TRandomizer() public method

생성자
public TRandomizer ( double n ) : System
n double 자유도 (default : 1) (양수만 가능)
return System

TRandomizer() public method

생성자
public TRandomizer ( int n, Func randomNumberFunc = null ) : System
n int 자유도 (default : 1) (양수만 가능)
randomNumberFunc Func 사용자 정의 난수 발생 함수
return System