mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-24 06:58:31 +00:00
591ef9acd9
Found an algorithm for T.DIST when third argument is FALSE.
56 lines
837 B
PHP
56 lines
837 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
[
|
|
0.246526054,
|
|
0.9726775350120389,
|
|
60,
|
|
],
|
|
'negative value' => [
|
|
0.05984790643563141,
|
|
-1.959999998, 60,
|
|
],
|
|
[
|
|
0.23036198922913867,
|
|
1, 10,
|
|
],
|
|
[
|
|
0.05736069661390933,
|
|
2, 25,
|
|
],
|
|
'test 2 derived from Perl suite 2-tail' => [
|
|
0.0018685887727939731,
|
|
6.251, 3,
|
|
],
|
|
'issue 4167' => [
|
|
0.07274011592342915,
|
|
1.8373862310371, 1,
|
|
],
|
|
[
|
|
0.25270396336615836,
|
|
0.509525, 1,
|
|
],
|
|
[
|
|
0.29593300757148816,
|
|
-0.7, 8,
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
'NaN', 10,
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
1, 'NaN',
|
|
],
|
|
[
|
|
0.23036198922913867,
|
|
-1, 10,
|
|
],
|
|
[
|
|
'#NUM!',
|
|
1, 0,
|
|
],
|
|
];
|