mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-21 22:54:37 +00:00
17af13281b
* 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
41 lines
534 B
PHP
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,
|
|
],
|
|
];
|