mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-22 00:33:41 +00:00
ec2531411d
* Start implementing Newton-Raphson for the inverse of Statistical Distributions, starting with the two-tailed Student-T * Additional unit tests and validations * Use the new Newton Raphson class for calculating the Inverse of ChiSquared * Extract Weibull distribution, and provide unit tests
33 lines
383 B
PHP
33 lines
383 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
1.960041187127,
|
|
0.05464, 60,
|
|
],
|
|
[
|
|
1.221255395004,
|
|
0.25, 10,
|
|
],
|
|
[
|
|
0.699812061312,
|
|
0.5, 10,
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
'NaN', 10,
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
0.5, 'NaN',
|
|
],
|
|
[
|
|
'#NUM!',
|
|
-0.5, 10,
|
|
],
|
|
[
|
|
'#NUM!',
|
|
0.5, 0,
|
|
],
|
|
];
|