mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-24 09:48:26 +00:00
a2bb825bc5
* Extract Normal and Standard Normal Distributions from the Statistical Class * Extract ZTest from the Statistical Class, and move it to the Standard Normal Distribution class Additional unit tests for NORMINV() * Extract LogNormal distribution functions from Statistical
19 lines
489 B
PHP
19 lines
489 B
PHP
<?php
|
|
|
|
return [
|
|
[0.908788780274, 1.333333333333, true],
|
|
[0.164010074676, 1.333333333333, false],
|
|
[0.352065326764, 0.5, false],
|
|
[0.788144601416, 0.8, true],
|
|
[0.841344746068, 1.0, true],
|
|
[0.158655253931, -1.0, true],
|
|
[0.066807201269, -1.5, true],
|
|
[0.129517595666, -1.5, false],
|
|
[0.5, 0, true],
|
|
[0.398942280401, 0, false],
|
|
[0.989275889978, 2.3, true],
|
|
[0.028327037742, 2.3, false],
|
|
['#VALUE!', 'NaN', true],
|
|
['#VALUE!', 2.3, 'NaN'],
|
|
];
|