PhpSpreadsheet/tests/data/Calculation/Statistical/NORMINV.php
Mark Baker 57213deb64
Implementation of MS Excel's LOGNORM.DIST(), NORM.S.DIST(), F.DIST(), GAUSS() and GAMMA() functions (#1588)
* `GAUSS()` and `GAMMA()`, `NORM.S.DIST()`, `LOGNORM.DIST()` and `F.DIST()` function implementations, and further unit tests for a number of the statistical functions

Co-authored-by: Adrien Crivelli <adrien.crivelli@gmail.com>
2020-07-25 12:44:51 +02:00

12 lines
259 B
PHP

<?php
return [
[42.000002008416, 0.908789, 40, 1.5],
[5.50669420572, 0.6, 5, 2],
[63.813775624441, 0.25, 65.5, 2.5],
['#NUM!', -0.5, 2.2, 3.3],
['#NUM!', 1.5, 2.2, 3.3],
['#NUM!', 0.5, 2.2, -3.3],
['#VALUE!', 'NAN', 0.1, 0.2],
];