mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-21 21:03:41 +00:00
a2bb825bc5
* Extract Normal and Standard Normal Distributions from the Statistical Class * Extract ZTest from the Statistical Class, and move it to the Standard Normal Distribution class Additional unit tests for NORMINV() * Extract LogNormal distribution functions from Statistical
12 lines
251 B
PHP
12 lines
251 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],
|
|
['#VALUE!', 1.1, 'NAN', 0.2],
|
|
['#VALUE!', 1.1, 0.1, 'NAN'],
|
|
];
|