57213deb64
* `GAUSS()` and `GAMMA()`, `NORM.S.DIST()`, `LOGNORM.DIST()` and `F.DIST()` function implementations, and further unit tests for a number of the statistical functions Co-authored-by: Adrien Crivelli <adrien.crivelli@gmail.com>
10 lines
185 B
PHP
10 lines
185 B
PHP
<?php
|
|
|
|
return[
|
|
[0.0390835557068, 4, 3.5, 1.2],
|
|
[0.066417114799, 12, 10, 5],
|
|
['#NUM!', -1.1, -2.2, 3.3],
|
|
['#NUM!', 1.1, -2.2, -3.3],
|
|
['#VALUE!', 'NAN', 0.1, 0.2],
|
|
];
|