sagacity/inc/vendor/phpoffice/phpspreadsheet/tests/data/Calculation/MathTrig/MROUND.php
Ryan Prather d52454d1bb Updates to 3rd party libraries
Add Dockerfile and specific docker-php.ini
2018-08-28 21:27:13 -04:00

60 lines
709 B
PHP

<?php
return [
[
9,
10,
3,
],
[
-9,
-10,
-3,
],
[
1.3999999999999999,
1.3,
0.20000000000000001,
],
[
0,
5,
0,
],
[
3.1419999999999999,
3.1415899999999999,
0.002,
],
[
-3.1400000000000001,
-3.1415899999999999,
-0.02,
],
[
31420,
31415.92654,
10,
],
[
31416,
31415.92654,
1,
],
[
'#NUM!',
5,
-2,
],
[
'#VALUE!',
'ABC',
1,
],
[
'#VALUE!',
1.234,
'ABC',
],
];