C# Class NSoft.NFramework.Numerics.RandomTool

난수 발생을 위한 Utility 클래스입니다.
Afficher le fichier Open project: debop/NFramework

Méthodes publiques

Méthode Description
FillValues ( this randomizer, double values ) : void

난수발생기를 이용하여 values 배열에 난수를 할당합니다.

FillValues ( this randomizer, double values, int count ) : void

난수발생기를 이용하여 values 배열에 난수를 count 갯수만큼 할당합니다.

GenerateValues ( this randomizer, int count ) : IEnumerable

난수발생기로 지정한 갯수만큼 난수를 발생시킵니다.

Method Details

FillValues() public static méthode

난수발생기를 이용하여 values 배열에 난수를 할당합니다.
public static FillValues ( this randomizer, double values ) : void
randomizer this
values double
Résultat void

FillValues() public static méthode

난수발생기를 이용하여 values 배열에 난수를 count 갯수만큼 할당합니다.
public static FillValues ( this randomizer, double values, int count ) : void
randomizer this
values double
count int
Résultat void

GenerateValues() public static méthode

난수발생기로 지정한 갯수만큼 난수를 발생시킵니다.
public static GenerateValues ( this randomizer, int count ) : IEnumerable
randomizer this
count int
Résultat IEnumerable