mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-21 18:43:41 +00:00
a34dd71cce
* Difference in variance calculations between Excel/Gnumeric and Open/LibreOffice * Simplify STDEV() function logic by remembering that STDEV() is simply the square root of VAR(), so we can simply use the VAR() calculaion rather than duplicating the basic logic... and also allow for the differences between Excel/Gnumeric and Open/LibreOffice
17 lines
231 B
PHP
17 lines
231 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
678.84,
|
|
[1345, 1301, 1368, 1322, 1310, 1370, 1318, 1350, 1303, 1299],
|
|
],
|
|
[
|
|
0.25,
|
|
[true, false],
|
|
],
|
|
[
|
|
0.222222222222,
|
|
[true, false, 1],
|
|
],
|
|
];
|