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

60 lines
709 B
PHP
Raw Normal View History

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