Files
PhpSpreadsheet/tests/data/Calculation/Statistical/BETADIST.php
T
Mark Baker 80155cf26a Unhappy path unit tests (#1814)
* Unhappy path unit tests

* Fix unhappy error for BETADIST and BETAINV min/max range
2021-01-29 23:23:29 +01:00

37 lines
493 B
PHP

<?php
return [
[
0.4059136,
0.4, 4, 5,
],
[
0.99596045887,
3, 5, 10, 1, 4,
],
[
0.960370937542,
3, 7.5, 9, 1, 4,
],
[
0.960370937542,
3, 7.5, 9, 4, 1,
],
[
0.598190307617,
7.5, 8, 9, 5, 10,
],
[
0.685470581054,
2, 8, 10, 1, 3,
],
[
'#VALUE!',
2, 'NAN', 10, 1, 3,
],
[
'#NUM!',
2, -8, 10, 1, 3,
],
];