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

58 lines
633 B
PHP

<?php
return [
[
2.5,
1,
2,
],
[
-2.5,
-2,
-2,
],
[
-2.5,
2,
'#NUM!',
],
[
2.5,
-2,
'#NUM!',
],
[
123.456,
0,
'#DIV/0!',
],
[
1.5,
0.10000000000000001,
1.5,
],
[
0.23400000000000001,
0.01,
0.23000000000000001,
],
[
123.456,
'#VALUE!',
],
[
'ABC',
'#VALUE!',
],
[
17,
3,
15,
],
[
19,
4,
16,
],
];