PhpSpreadsheet/tests/data/Calculation/Statistical/AVERAGEA.php
Mark Baker f1e82a212f
Extended unit tests (#1087)
* Merge branch 'master' of C:\Projects\PHPOffice\PHPSpreadsheet\develop with conflicts.

* Additional unit tests for average functions, and fix to AVERAGEIF() function if third argument is passed

* Update change log

* Stricter typed comparisons in AVERAGEIF() conditions

* Unit tests for BETADIST() and BETAINV()
2019-07-16 16:18:42 +02:00

25 lines
297 B
PHP

<?php
return [
[
7.0,
[10, 7, 9, 2],
],
[
5.6,
[10, 7, 9, 2, 'STRING VALUE'],
],
[
8.85,
[10.5, 7.2],
],
[
43.74,
[10.5, 7.2, 200, true, false],
],
[
0.5,
[true, false],
],
];