Files
oleibman 591ef9acd9 Implement Rest of T.DIST
Found an algorithm for T.DIST  when third argument is FALSE.
2025-12-16 21:34:59 -08:00

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,
],
];