PhpSpreadsheet/tests/data/Calculation/Statistical/GAMMADIST.php
Mark Baker fe121e8f7a
Additional statistical unit tests for non-happy path (#1594)
* Additional statistical unit tests for non-happy path
2020-07-25 21:58:08 +02:00

21 lines
253 B
PHP

<?php
return [
[
0.112020903828,
6, 3, 2, false,
],
[
0.576809918873,
6, 3, 2, true,
],
[
'#VALUE!',
6, 'NAN', 2, true,
],
[
'#NUM!',
-6, 3, 2, true,
],
];