Files
PhpSpreadsheet/tests/data/Calculation/Statistical/LOGNORMDIST.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

12 lines
251 B
PHP

<?php
return[
[0.0390835557068, 4, 3.5, 1.2],
[0.066417114799, 12, 10, 5],
['#NUM!', -1.1, 2.2, 3.3],
['#NUM!', 1.1, 2.2, -3.3],
['#VALUE!', 'NaN', 0.1, 0.2],
['#VALUE!', 1.1, 'NAN', 0.2],
['#VALUE!', 1.1, 0.1, 'NAN'],
];