Files
PhpSpreadsheet/tests/data/Calculation/Statistical/NORMDIST.php
Mark Baker a2bb825bc5 Extract Normal and Standard Normal Distributions from the Statistical Class (#1981)
* 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
2021-04-02 20:17:03 +02:00

15 lines
419 B
PHP

<?php
return [
[0.9087887802741, 42, 40, 1.5, true],
[0.109340049784, 42, 40, 1.5, false],
[0.0176032663382, 50, 40, 20, false],
[0.2524925375469, 0.8, 1, 0.3, true],
[0.8413447460685, 68, 65.5, 2.5, true],
['#NUM!', 42, 40, -1.5, true],
['#VALUE!', 'NaN', 40, 1.5, true],
['#VALUE!', 42, 'NaN', 1.5, true],
['#VALUE!', 42, 40, 'NaN', true],
['#VALUE!', 42, 40, 1.5, 'NaN'],
];