PhpSpreadsheet/tests/data/Calculation/Statistical/MAX.php
Mark Baker 9683e5be18
More unit tests for statistical functions, including a bugfix to LARGE() (#1601)
* More unit tests for statistical functions, including a bugfix to LARGE() that was identified in testing
2020-07-29 23:56:37 +02:00

17 lines
185 B
PHP

<?php
return [
[
27,
10, 7, 9, 27, 2,
],
[
10,
10, 7, 9, '27', 2,
],
[
0,
null, 'STRING', true, '', '27',
],
];