Files
PhpSpreadsheet/tests/data/Calculation/Statistical/ZTEST.php
T
Mark Baker a34695e0f9 Financial functions more rationalization (#1990)
* Additional unit tests and rationalisation for Financial Functions
* Providing a series of sample files for Financial functions
* Refactor the last of the existing Financial functions
* Some more unit tests with default assignments from null arguments

Co-authored-by: Adrien Crivelli <adrien.crivelli@gmail.com>
2021-04-12 22:08:58 +02:00

53 lines
855 B
PHP

<?php
return [
[
0.090574196851,
[3, 6, 7, 8, 6, 5, 4, 2, 1, 9],
4,
],
[
0.863043389130,
[3, 6, 7, 8, 6, 5, 4, 2, 1, 9],
6,
],
[
0.371103278559,
[4, 5, 2, 5, 8, 9, 3, 2, 3, 8, 9, 5],
5,
],
[
0.83812918702,
[4, 5, 2, 5, 8, 9, 3, 2, 3, 8, 9, 5],
6,
],
[
0.412070447871,
[1, 2, 3, 3, 4, 4, 8, 10, 12],
5,
3,
],
[
0.00012286639,
[24, 22, 19, 21, 18, 19, 20, 23],
18,
],
[
0.952209647727,
[24, 22, 19, 21, 18, 19, 20, 23],
22,
],
[
'#VALUE!',
[1, 2, 3, 3, 4, 4, 8, 10, 12],
'NaN',
3,
],
[
'#VALUE!',
[1, 2, 3, 3, 4, 4, 8, 10, 12],
5,
'NaN',
],
];