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

57 lines
515 B
PHP
Raw Normal View History

<?php
return [
[
-1,
-1.5,
],
[
-1,
-1,
],
[
-1,
-0.5,
],
[
0,
0,
],
[
1,
0.5,
],
[
1,
1,
],
[
1,
1.5,
],
[
1,
2,
],
[
1,
2.5,
],
[
'#VALUE!',
'ABC',
],
[
1,
true,
],
[
0,
false,
],
[
-1,
'-3.5',
],
];