mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-21 06:13:57 +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
57 lines
722 B
PHP
57 lines
722 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
0.027322464988,
|
|
1.959999998, 60, 1,
|
|
],
|
|
[
|
|
0.054644929976,
|
|
1.959999998, 60, 2,
|
|
],
|
|
[
|
|
0.170446566151,
|
|
1, 10, 1,
|
|
],
|
|
[
|
|
0.340893132302,
|
|
1, 10, 2,
|
|
],
|
|
[
|
|
0.028237990213,
|
|
2, 25, 1,
|
|
],
|
|
[
|
|
0.056475980427,
|
|
2, 25, 2,
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
'NaN', 10, 2,
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
1, 'NaN', 2,
|
|
],
|
|
[
|
|
'#VALUE!',
|
|
1, 10, 'NaN',
|
|
],
|
|
[
|
|
'#NUM!',
|
|
-1, 10, 2,
|
|
],
|
|
[
|
|
'#NUM!',
|
|
1, 0, 2,
|
|
],
|
|
[
|
|
'#NUM!',
|
|
1, 10, 0,
|
|
],
|
|
[
|
|
'#NUM!',
|
|
1, 10, 3,
|
|
],
|
|
];
|