C# Class NSoft.NFramework.Numerics.RandomTool

난수 발생을 위한 Utility 클래스입니다.
显示文件 Open project: debop/NFramework

Public Methods

Method 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 method

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

FillValues() public static method

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

GenerateValues() public static method

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