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

10 lines
185 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],
];