PhpSpreadsheet/tests/data/Calculation/Statistical/EXPONDIST.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
249 B
PHP

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