PHP 클래스 MathPHP\Probability\Distribution\Continuous\Normal

상속: extends Continuous
파일 보기 프로젝트 열기: markrogoyski/math-php 1 사용 예제들

공개 메소드들

메소드 설명
CDF ( number $x, number , number ) : float Cumulative distribution function Probability of being below X.
PDF ( number $x, number , number ) : float Probability density function
mean ( number , number ) : number Mean of the distribution

메소드 상세

CDF() 공개 정적인 메소드

Area under the normal distribution from -∞ to X. _ _ 1 | / x - μ \ | cdf(x) = - | 1 + erf| ----- | | 2 |_ \ σ√2 / _|
public static CDF ( number $x, number , number ) : float
$x number upper bound
number mean
number standard deviation
리턴 float cdf(x) below

PDF() 공개 정적인 메소드

1 f(x|μ,σ) = ----- ℯ^−⟮x − μ⟯²∕2σ² σ√⟮2π⟯
public static PDF ( number $x, number , number ) : float
$x number random variable
number mean
number standard deviation
리턴 float f(x|μ,σ)

mean() 공개 정적인 메소드

μ = μ
public static mean ( number , number ) : number
number mean
number standard deviation
리턴 number