Files
PhpSpreadsheet/tests/data/Calculation/Statistical/EXPONDIST.php
Mark Baker 17af13281b Extract a few more Distribution functions from Statistical (#1975)
* Extract a few more Distribution functions from Statistical; this time EXPONDIST() and HYPGEOMDIST()

* Extract the F Distribution (although only F.DIST() is implemented so far

* Updae docblocks

* PHPCS
2021-03-31 21:45:06 +02:00

41 lines
534 B
PHP

<?php
return [
[
1.353352832366,
0.2, 10, false,
],
[
0.864664716763,
0.2, 10, true,
],
[
0.606530659713,
0.5, 1, false,
],
[
0.393469340287,
0.5, 1, true,
],
[
'#VALUE!',
'NAN', 1, true,
],
[
'#VALUE!',
0.5, 'NAN', true,
],
[
'#VALUE!',
0.5, 1, 'NAN',
],
[
'#NUM!',
-0.5, 1, true,
],
[
'#NUM!',
0.5, -1, true,
],
];