mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-24 22:08:19 +00:00
5b4d7fcdc8
T.DIST takes 3 parameters. When the 3rd parameter, a boolean, is true, we now have code to support the request. We still do not have code to handle the false case.
55 lines
813 B
PHP
55 lines
813 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
[
|
|
0.9726775350120389,
|
|
1.959999998, 60,
|
|
],
|
|
'negative value' => [
|
|
0.02732246498796111,
|
|
-1.959999998, 60,
|
|
],
|
|
[
|
|
0.8295534338489702,
|
|
1, 10,
|
|
],
|
|
[
|
|
0.9717620097865514,
|
|
2, 25,
|
|
],
|
|
'test 2 derived from Perl suite 2-tail' => [
|
|
0.9958699007658498,
|
|
6.251, 3,
|
|
],
|
|
'issue 4167' => [
|
|
0.8413483125582437,
|
|
1.8373862310371, 1,
|
|
],
|
|
[
|
|
0.649999886410997,
|
|
0.509525, 1,
|
|
],
|
|
[
|
|
0.251885526,
|
|
-0.7, 8,
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
'NaN', 10,
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
1, 'NaN',
|
|
],
|
|
[
|
|
0.17044656615102982,
|
|
-1, 10,
|
|
],
|
|
[
|
|
'#NUM!',
|
|
1, 0,
|
|
],
|
|
];
|