PhpSpreadsheet/tests/data/Calculation/MathTrig/MROUND.php

60 lines
709 B
PHP
Raw Normal View History

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