PhpSpreadsheet/tests/data/Calculation/Statistical/NORMDIST.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
307 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!', 42, 'ALPHA', 1.5, true],
];