Files
PhpSpreadsheet/tests/data/Calculation/Statistical/TINV.php
Mark Baker ec2531411d Start implementing Newton-Raphson for the inverse of Statistical Distributions (#1958)
* 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
2021-03-27 13:29:58 +01:00

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