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

35 lines
769 B
PHP

<?php
return [
[3.0, '2.5, 1'],
[-4.0, '-2.5, -2'],
[1.5, '1.5, 0.1'],
[0.24, '0.234, 0.01'],
[-2.4, '-2.341, -0.1'],
[0.0, '8, 0'],
[9.0, '8, 1.5'],
['#NUM!', '8, -1.5'],
['#NUM!', '-8, 1.5'],
[-9.0, '-8, -1.5'],
[8.3, '8.26, 0.05'],
[2.35, '2.341, 0.05'],
['#VALUE!', '123.456, "abc"'],
['exception', '123.456'],
['#VALUE!', '"PhpSpreadsheet", 1'],
['exception', '"PhpSpreadsheet"'],
[211.0, '210.67, 1'],
[210.70, '210.67, 0.05'],
[210.65, '210.63, 0.05'],
[4.0, '2.98, 2'],
['#NUM!', '-2.98, 2'],
[-5.0, '-4.5, -1'],
[0, ',1'],
[0, 'false,1'],
[1, 'true,1'],
['#VALUE!', '"", 1'],
[2, 'A2, 1'],
[3, 'A3, 1'],
[-4, 'A4, -1'],
[-6, 'A5, -1'],
];