fullpipe / normal-distribution
Simple php lib for basic Normal distribution calculations
Installs: 34
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/fullpipe/normal-distribution
Requires
- php: >=5.3.2
Requires (Dev)
- phpspec/phpspec: ^2.5
- phpunit/phpunit: ^5.4
This package is auto-updated.
Last update: 2025-09-27 03:32:53 UTC
README
Simple php lib for basic Normal distribution calculations
$snd = new \Fullpipe\NormalDistribution\StandardNormalDistribution(); echo $snd->pdf(1); echo $snd->cdf(1); echo $snd->invCdf(0.5); $gnd = new \Fullpipe\NormalDistribution\GeneralNormalDistribution(100, 9); echo $gnd->pdf(50); echo $gnd->cdf(50); echo $gnd->invCdf(0.5);