C# Class NSoft.NFramework.Numerics.Distributions.Continuous.Weibull

Inheritance: IContinuousDistribution
Datei anzeigen Open project: debop/NFramework

Public Methods

Method Description
AssertValidParameters ( double shape, double scale ) : void

Weibull 분포의 인자 값을 검증합니다.

CumulativeDistribution ( double x ) : double

확률 분포 계산을 위한 누적분포함수

Density ( double x ) : double

분포의 확률 밀도

DensityLn ( double x ) : double

분포의 로그 확률 밀도

Sample ( ) : double

분포의 무작위 값을 제공합니다.

Sample ( Random rnd, double shape, double scale ) : double

Generates a sample from the Weibull distribution.

Samples ( ) : IEnumerable

현 분포의 무작위 값을 열거합니다.

Samples ( Random rnd, double shape, double scale ) : IEnumerable

Generates a sequence of samples from the Weibull distribution.

ToString ( ) : string
Weibull ( double shape, double scale, Func randomFactory = null ) : System

Initializes a new instance of the Weibull class.

Private Methods

Method Description
SampleWeibull ( Random rnd, double shape, double scale ) : double

Weibull 분포의 샘플 데이타를 제공합니다.

SampleWeibulls ( Random rnd, double shape, double scale ) : IEnumerable

Weibull 분포의 샘플 데이타 시퀀스를 제공합니다.

SetParameters ( double shape, double scale ) : void

Weibull 분포의 factor를 설정합니다.

Method Details

AssertValidParameters() public static method

Weibull 분포의 인자 값을 검증합니다.
public static AssertValidParameters ( double shape, double scale ) : void
shape double
scale double
return void

CumulativeDistribution() public method

확률 분포 계산을 위한 누적분포함수
public CumulativeDistribution ( double x ) : double
x double The location at which to compute the cumulative distribution function.
return double

Density() public method

분포의 확률 밀도
public Density ( double x ) : double
x double
return double

DensityLn() public method

분포의 로그 확률 밀도
public DensityLn ( double x ) : double
x double
return double

Sample() public method

분포의 무작위 값을 제공합니다.
public Sample ( ) : double
return double

Sample() public static method

Generates a sample from the Weibull distribution.
public static Sample ( Random rnd, double shape, double scale ) : double
rnd System.Random 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.
return double

Samples() public method

현 분포의 무작위 값을 열거합니다.
public Samples ( ) : IEnumerable
return IEnumerable

Samples() public static method

Generates a sequence of samples from the Weibull distribution.
public static Samples ( Random rnd, double shape, double scale ) : IEnumerable
rnd System.Random 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.
return IEnumerable

ToString() public method

public ToString ( ) : string
return string

Weibull() public method

Initializes a new instance of the Weibull class.
public Weibull ( double shape, double scale, Func randomFactory = null ) : System
shape double The shape of the Weibull distribution.
scale double The scale of the Weibull distribution.
randomFactory Func 난수발생기 Factory
return System