Toggle navigation
Hot Examples
KO
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
PHP
PHP
C#
Java
Go
C++
Python
JS
TS
검색
홈
MathPHP
Probability
Distribution
Discrete
Pascal
PHP 클래스 MathPHP\Probability\Distribution\Discrete\Pascal
상속:
extends
Discrete
파일 보기
프로젝트 열기: markrogoyski/math-php
공개 메소드들
메소드
설명
PMF
(
integer
$x
,
integer
$r
,
float
$P
) :
float
Pascal distribution (convenience method for negative binomial distribution) Probability mass function https://en.wikipedia.org/wiki/Negative_binomial_distribution
메소드 상세
PMF()
공개
정적인
메소드
b(x; r, P) = ₓ₋₁Cᵣ₋₁ pʳ * (1 - P)ˣ⁻ʳ
public
static
PMF
(
integer
$x
,
integer
$r
,
float
$P
) :
float
$x
integer
number of trials required to produce r successes
$r
integer
number of successful events
$P
float
probability of success on an individual trial
리턴
float